{% extends "showcase/cabinet/base_cabinet.html" %} {% block title %}Catalog{% endblock %} {% block sidebar_title %} Catalog {% endblock %} {# Categories from DB -> sidebar tabs. New category = new item automatically #} {% block sidebar_nav %} {% for cat in categories %}
  • {{ cat.name }}
  • {% endfor %} {% endblock %} {% block cabinet_content %}
    {{ active_category.name }}
    {# Products/Services of active category via universal list widget #} {% include "showcase/cabinet/widgets/list.html" with title=active_category.name items=items icon="bi-tag" %} {% endblock %}