<%- include('../partials/head', { title: 'Categories' }) %> <%- include('../partials/adminNav', { currentPath: '/admin/categories' }) %> <%- include('../partials/adminTopBar') %>
<%- include('../partials/adminBanner') %>

Categories

Organize your models into groups

<% if (error) { %>

<%= error %>

<% } %>

New Category

<% if (categories.length === 0) { %>

No categories yet. Create one above.

<% } else { %>
<% categories.forEach((cat, i) => { %>

<%= cat.name %>

<% if (cat.description) { %>

<%= cat.description %>

<% } %>
<%= cat.model_count %> model<%= cat.model_count !== 1 ? 's' : '' %>
<% }) %>
<% } %>