89 lines
3.7 KiB
HTML
89 lines
3.7 KiB
HTML
{% extends "admin/change_form.html" %}
|
|
{% load static admin_interface_tags %}
|
|
|
|
{% block field_sets %}
|
|
|
|
{% get_admin_interface_setting "show_fieldsets_as_tabs" as show_fieldsets_as_tabs %}
|
|
{% get_admin_interface_setting "show_inlines_as_tabs" as show_inlines_as_tabs %}
|
|
{% admin_interface_use_changeform_tabs adminform inline_admin_formsets as admin_interface_use_changeform_tabs %}
|
|
|
|
{% if not admin_interface_use_changeform_tabs %}
|
|
|
|
{{ block.super }}
|
|
|
|
{% else %}
|
|
|
|
<div id="tabbed-changeform-tabs" class="tabbed-changeform-tabs">
|
|
|
|
{% if show_fieldsets_as_tabs %}
|
|
{% for fieldset in adminform %}
|
|
{% with fieldset.name|default_if_none:opts.verbose_name as tab_name %}
|
|
<button type="button" id="tablink-{{ tab_name|slugify }}" class="tabbed-changeform-tablink {{ forloop.counter0|default:'active' }}" onclick="AdminInterface.tabbedChangeForm.openTab(event, '{{ tab_name|slugify }}')">
|
|
{{ tab_name|capfirst }}
|
|
</button>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
{% else %}
|
|
{% with opts.verbose_name as tab_name %}
|
|
<button type="button" id="tablink-{{ tab_name|slugify }}" class="tabbed-changeform-tablink active" onclick="AdminInterface.tabbedChangeForm.openTab(event, '{{ tab_name|slugify }}')">
|
|
{{ tab_name|capfirst }}
|
|
</button>
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% if show_inlines_as_tabs %}
|
|
{% for inline_admin_formset in inline_admin_formsets %}
|
|
{% with inline_admin_formset.opts.verbose_name_plural as tab_name %}
|
|
<button type="button" id="tablink-{{ tab_name|slugify }}" class="tabbed-changeform-tablink" onclick="AdminInterface.tabbedChangeForm.openTab(event, '{{ tab_name|slugify }}')">
|
|
{{ tab_name|capfirst }}
|
|
</button>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<span class="tabbed-changeform-tabs-remaining-space"></span>
|
|
|
|
</div>
|
|
|
|
{% if show_fieldsets_as_tabs %}
|
|
{% for fieldset in adminform %}
|
|
{% with fieldset.name|default_if_none:opts.verbose_name as tab_name %}
|
|
<div id="tabcontent-{{ tab_name|slugify }}" class="tabbed-changeform-tabcontent {{ forloop.counter0|default:'active' }}">
|
|
{% include "admin/includes/headerless_fieldset.html" %}
|
|
</div>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
{% else %}
|
|
{% with opts.verbose_name as tab_name %}
|
|
<div id="tabcontent-{{ tab_name|slugify }}" class="tabbed-changeform-tabcontent active">
|
|
{% for fieldset in adminform %}
|
|
{% include "admin/includes/fieldset.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% for inline_admin_formset in inline_admin_formsets %}
|
|
{% with inline_admin_formset.opts.verbose_name_plural as tab_name %}
|
|
<div id="tabcontent-{{ tab_name|slugify }}" class="tabbed-changeform-tabcontent">
|
|
{% get_admin_interface_inline_template inline_admin_formset.opts.template as inline_template %}
|
|
{% include inline_template %}
|
|
</div>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
|
|
<script type="text/javascript" id="admin-interface-tabbed-changeform-script" src="{% static 'admin_interface/tabbed-changeform/tabbed-changeform.js' %}"></script>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block inline_field_sets %}
|
|
|
|
{% get_admin_interface_setting "show_inlines_as_tabs" as show_inlines_as_tabs %}
|
|
{% if not show_inlines_as_tabs %}
|
|
{{ block.super }}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|