{% extends layout_data.main_layout|default:"genviews/layout.html" %} {% load i18n %} {% block content %}

{% if object.detail_header %} {{ object.detail_header | safe}} {% else %} {{ object }} {% endif %}
    {% for label, value in object.get_array_data.items %}
  • {{ label }} : {{ value }}
  • {% endfor %}

{% for href, faclass in object.get_detail_menu %} {% endfor %} {% if actions_extra %} {% for action in actions_extra %} {% if action.url %} {{ action.text }} {% elif action.href %} {{ action.text }} {% else %} {{ action.text }} {% endif %} {% endfor %} {% endif %} {% block extra_actions %} {% endblock extra_actions %}

{% if obj_html %} {% include obj_html %} {% endif %} {% block extra_content %} {% endblock extra_content %} {% endblock %}