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

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

{% trans "Name" %} {% trans "Description" %} {% trans "Actions" %}
{{object.name}} {{object.description}} {% if perms.django_pettycash.change_source %} {% trans "Edit" %} {% endif %} {% if perms.django_pettycash.delete_source %} {% trans "Delete" %} {% endif %}
{% endblock content %}