Categories admin interface fully implemented
This commit is contained in:
parent
c2a099c3e2
commit
4e74c871a2
14 changed files with 2837 additions and 3 deletions
30
templates/admin/categories/index.html.ep
Normal file
30
templates/admin/categories/index.html.ep
Normal file
|
@ -0,0 +1,30 @@
|
|||
% 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>
|
Reference in a new issue