{# we have a form, just to make it easy to go through the data and display it #}
{% for field in form %}
{{ field.label_tag }} {{ field.value }}
{% endfor %}
{% if not exclude_actions %}
{% if may_edit %}
{% trans "Edit" %}
{% elif debug %}
You do not have edit permission.
{% endif %}
{% trans "Back to list" %}
{% if may_delete %}
{% trans "Delete" %}
{% elif debug %}
You do not have delete permission.
{% endif %}
{% endif %}