{% extends "templates/base.html" %} {% block content %} {% if categories|length == 0 %} Any category available

{% else %} {% for category in categories %}
{{ category.id }}{{ category.name }}Edit{% if user.is_superuser %}Delete{% endif %} {% endfor %} {% endif %} {% if user.is_superuser %}
  • Add a category
  • {% endif %}
    {% endblock %}