{% load i18n viewflow %}
{% block detail-header %}

{{ view.object }}

{{ view.model|verbose_name_plural|title }} {{ view.object }}

{% include 'viewflow/includes/view_action_menu.html' with view=view only %}
{% endblock detail-header %} {% block detail-content %}
{% for field, field_name, value in view.get_object_data %} {% endfor %} {% block detail-extra %}{% endblock %}
{{ field_name }} {{ value }}
{% endblock detail-content %} {% block detail-actions %}
{% block detail-actions-list %} {% for action in view.get_object_actions %} {% if action.icon %}{{ action.icon }}{% endif %} {{ action.name }} {% endfor %} {% with change_link=view.get_object_change_link %}{% if change_link %} {% trans 'Change' %} {% endif %}{% endwith %} {% endblock %}
{% endblock detail-actions %}