change_form.html 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n admin_urls admin_static admin_modify jet_tags %}
  3. {% block extrahead %}
  4. {{ block.super }}
  5. <script type="text/javascript" src="{% url 'admin:jsi18n' %}"></script>
  6. {{ media }}
  7. {% endblock %}
  8. {% block coltype %}colM{% endblock %}
  9. {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-form{% endblock %}
  10. {% if not is_popup %}
  11. {% block breadcrumbs %}
  12. <div class="breadcrumbs">
  13. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  14. &rsaquo; <a href="{% url 'admin:app_list' app_label=opts.app_label %}">{% if opts.app_config.verbose_name %}{{ opts.app_config.verbose_name }}{% else %}{% trans app_label as app_label %}{{ app_label|capfirst|escape }}{% endif %}</a>
  15. &rsaquo; {% if has_change_permission %}<a href="{% url opts|admin_urlname:'changelist' %}">{{ opts.verbose_name_plural|capfirst }}</a>{% else %}{{ opts.verbose_name_plural|capfirst }}{% endif %}
  16. &rsaquo; {% if add %}{% trans 'Add' %} {{ opts.verbose_name }}{% else %}{{ original|truncatewords:"18" }}{% endif %}
  17. </div>
  18. {% endblock %}
  19. {% endif %}
  20. {% block content %}
  21. <div id="content-main">
  22. <div class="changeform-object-tools">
  23. {% block object-tools %}
  24. {% if change %}
  25. {% if not is_popup %}
  26. <ul class="object-tools horizontal">
  27. {% block object-tools-items %}
  28. <li>
  29. {% url opts|admin_urlname:'history' original.pk|admin_urlquote as history_url %}
  30. <a href="{% jet_add_preserved_filters history_url %}" class="historylink">{% trans "History" %}</a>
  31. </li>
  32. {% if has_absolute_url %}
  33. <li><a href="{{ absolute_url }}" class="viewsitelink">{% trans "View on site" %}</a></li>
  34. {% endif %}
  35. {% endblock %}
  36. </ul>
  37. {% endif %}
  38. {% endif %}
  39. {% endblock %}
  40. </div>
  41. <form {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" id="{{ opts.model_name }}_form" novalidate>
  42. {% csrf_token %}
  43. {% block form_top %}{% endblock %}
  44. {% filter_fieldsets_with_errors adminform as fieldsets_with_errors %}
  45. <div class="changeform">
  46. {% if adminform.fieldsets|length > 1 or inline_admin_formsets|length > 0 %}
  47. <ul class="changeform-tabs">
  48. {% for fieldset in adminform %}
  49. {% is_fieldset_selected forloop.counter0 fieldsets_with_errors as selected %}
  50. {% is_fieldset_with_errors forloop.counter0 fieldsets_with_errors as fieldset_with_errors %}
  51. <li class="changeform-tabs-item{% if selected %} selected{% endif %}{% if fieldset_with_errors %} errors{% endif %}">
  52. <a href="#" class="changeform-tabs-item-link" data-module-id="module_{{ forloop.counter0 }}">
  53. {% if fieldset.name %}
  54. {{ fieldset.name }}
  55. {% else %}
  56. {% trans "General" %}
  57. {% endif %}
  58. </a>
  59. </li>
  60. {% endfor %}
  61. {% for inline_admin_formset in inline_admin_formsets %}
  62. {% formset_has_errors inline_admin_formset.formset as errors %}
  63. <li class="changeform-tabs-item{% if errors %} errors{% endif %}">
  64. <a href="#" class="changeform-tabs-item-link" data-module-id="inline_module_{{ forloop.counter0 }}">
  65. {{ inline_admin_formset.opts.verbose_name_plural|capfirst }}
  66. </a>
  67. </li>
  68. {% endfor %}
  69. </ul>
  70. {% endif %}
  71. {% if is_popup %}<input type="hidden" name="{{ is_popup_var }}" value="1" />{% endif %}
  72. {% if to_field %}<input type="hidden" name="{{ to_field_var }}" value="{{ to_field }}" />{% endif %}
  73. {% if save_on_top %}{% block submit_buttons_top %}{% submit_row %}{% endblock %}{% endif %}
  74. {% if errors %}
  75. {{ adminform.form.non_field_errors }}
  76. {% endif %}
  77. {% block field_sets %}
  78. {% for fieldset in adminform %}
  79. {% is_fieldset_selected forloop.counter0 fieldsets_with_errors as selected %}
  80. {% is_fieldset_with_errors forloop.counter0 fieldsets_with_errors as fieldset_with_errors %}
  81. {% include "admin/includes/fieldset.html" with index=forloop.counter0 selected=selected errors=fieldset_with_errors %}
  82. {% endfor %}
  83. {% endblock %}
  84. {% block after_field_sets %}{% endblock %}
  85. {% block inline_field_sets %}
  86. {% for inline_admin_formset in inline_admin_formsets %}
  87. {% formset_has_errors inline_admin_formset.formset as errors %}
  88. {% include inline_admin_formset.opts.template with index=forloop.counter0 errors=errors %}
  89. {% endfor %}
  90. {% endblock %}
  91. {% block after_related_objects %}{% endblock %}
  92. {% block submit_buttons_bottom %}{% submit_row %}{% endblock %}
  93. {% block admin_change_form_document_ready %}
  94. <script type="text/javascript">
  95. (function($) {
  96. $(document).ready(function() {
  97. $('.add-another').click(function(e) {
  98. e.preventDefault();
  99. showAddAnotherPopup(this);
  100. });
  101. $('.related-lookup').click(function(e) {
  102. e.preventDefault();
  103. showRelatedObjectLookupPopup(this);
  104. });
  105. {% if adminform and add %}
  106. $('form#{{ opts.model_name }}_form :input:visible:enabled:first').focus()
  107. {% endif %}
  108. });
  109. })(django.jQuery);
  110. </script>
  111. {% endblock %}
  112. {# JavaScript for prepopulated fields #}
  113. {% prepopulated_fields_js %}
  114. </div>
  115. </form>
  116. </div>
  117. {% endblock %}