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

{% trans "Entry detail" %} – {{object}}

{% trans "Company" %} {% trans "Source" %} {% trans "Type" %} {% trans "Amount" %} {% trans "Reason" %} {% trans "Note" %} {% trans "Date" %} {% trans "Tags" %} {% trans "Actions" %}
{{object.company|default_if_none:"-"}} {{object.source}} {{object.get_kind_display}} {{object.amount}} € {{object.reason}} {{object.note}} {{object.date}} {% for tag in object.tags.all %} {{tag}} {% endfor %}
{% if perms.django_pettycash.change_entry %} {% endif %} {% if perms.django_pettycash.delete_entry %} {% endif %}
{% endblock content %}