33 lines
897 B
HTML
33 lines
897 B
HTML
|
<%~ E.includeFile("partials/head.eta.html", {"title": "Settings - Category"}) %> <%~ E.includeFile("partials/controls.eta.html", {"active": "SETT_CAT"}) %>
|
||
|
|
||
|
<h1>All categories</h1>
|
||
|
<div class="container">
|
||
|
<!-- Create new category button -->
|
||
|
<div class="row">
|
||
|
<div class="col-12">
|
||
|
<a href="/settings/category/new" class="btn btn-primary">Create new category</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- Table with all categories -->
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th scope="col">#</th>
|
||
|
<th scope="col">Name</th>
|
||
|
<th scope="col">Description</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% it.items.forEach(function(user){ %>
|
||
|
<tr>
|
||
|
<th scope="row"><%= user.id %></th>
|
||
|
<td><%= user.name %></td>
|
||
|
<td><%= user.description %></td> </tr>
|
||
|
<% }) %>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<%~ E.includeFile("partials/controlsFoot.eta.html") %> <%~ E.includeFile("partials/foot.eta.html") %>
|