{% extends "django_pettycash/dpc_base.html" %} {% load url from future %} {% load i18n %} {% block content %}

{% trans "Tag list" %}

{% if perms.django_pettycash.add_tag %} {% trans "Add" %} {% endif %}
{% if object_list %}
{% for t in object_list %} {% endfor %}
{% trans "Name" %}
{{t.name}} {% trans "View" %} {% if perms.django_pettycash.change_tag %} {% trans "Edit" %} {% endif %} {% if perms.django_pettycash.delete_tag %} {% trans "Delete" %} {% endif %}
{% else %}

{% trans "No tags" %}

{% endif %} {% endblock content %}