{% extends "base/header_content_footer.html" %} {% load crispy_forms_tags %} {% block title %} {% trans "Category list" %} {% endblock %} {% block content %}

{% trans "Category list" %}


{% trans "Add" %}
{% for category in categories %} {% empty %} {% endfor %}
# {% trans "Category Name" %} {% trans "Abbreviation" %} {% trans "Created at" %} {% trans "Pin to consumptions top" %} {% trans "Is Disabled" %} #
{{ forloop.counter }} {{ category.name }} {{ category.abbreviation }} {{ category.created_at|date:"Y-m-d" }} {% if category.pin_to_consumptions_top %} {% trans "Yes" %} {% endif %} {% if category.is_disabled %} {% trans "Yes" %} {% endif %} {% trans "Edit" %} | {% trans "Delete" %}
{% trans "No categories yet." %}
{% include "includes/_paginator.html" %} {% endblock %}