This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/templates/admin/categories/index.html.ep

31 lines
940 B
Plaintext

% layout 'admin';
% title 'Categories';
% content_for javascript => begin
% end
% if ( my $error = flash 'error' ) {
<div class="alert alert-danger" role="alert">
<strong>Error!</strong> <%= $error %>
</div>
% } elsif ( my $success = flash 'success' ) {
<div class="alert alert-success" role="alert">
<strong>Success!</strong> <%= $success %>
</div>
% }
<form action="<%= url_for %>" method="post">
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" placeholder="Category Name" name="category">
<span class="input-group-btn">
<button class="btn btn-primary" type="submit">Add</button>
</span>
</div>
</div>
</form>
<div class="list-group">
% for my $category (@$categories) {
<a href="<%= url_for . '/' . $category->{id} %>" class="list-group-item list-group-item-action d-flex">
<span><%= $category->{name} %></span>
</a>
% }
</div>