{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block extra_controls %} {% for button in detail_action_buttons %} {{ button.label }} {% endfor %} {% endblock extra_controls %} {% block content %}
{{ detail_spec.card_title }}
{% for row in detail_fields %} {% if row.use_header %} {% else %} {% endif %} {% endfor %}
{{ row.label }}{{ row.label }} {% if row.kind == 'link' %} {% if row.url %} {{ row.value }} {% elif row.is_empty and row.empty_text %} {{ row.empty_text }} {% else %} {{ row.value }} {% endif %} {% elif row.kind == 'url' %} {% if row.url %} {{ row.value }} {% else %} {{ row.value }} {% endif %} {% elif row.kind == 'code' %} {% if row.is_empty and row.empty_text %} {{ row.empty_text }} {% else %}
{{ row.value }}
{% endif %} {% elif row.is_empty and row.empty_text %} {{ row.empty_text }} {% else %} {{ row.value }} {% endif %}
{% block detail_primary_extras %}{% endblock %} {% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% for section in detail_side_sections %}
{{ section.title }}
{% render_table section.table %}
{% endfor %}
{% for section in detail_bottom_sections %}
{{ section.title }}
{% render_table section.table %}
{% endfor %} {% endblock content %}