4bf36b00/node_modules/caniuse-lite/data/regions/SA.js">SA.js d8e79ace03 index commit пре 3 година SB.js d8e79ace03 index commit пре 3 година SC.js d8e79ace03 index commit пре 3 година SD.js d8e79ace03 index commit пре 3 година SE.js d8e79ace03 index commit пре 3 година SG.js d8e79ace03 index commit пре 3 година SH.js d8e79ace03 index commit пре 3 година SI.js d8e79ace03 index commit пре 3 година SK.js d8e79ace03 index commit пре 3 година SL.js d8e79ace03 index commit пре 3 година SM.js d8e79ace03 index commit пре 3 година SN.js d8e79ace03 index commit пре 3 година SO.js d8e79ace03 index commit пре 3 година SR.js d8e79ace03 index commit пре 3 година ST.js d8e79ace03 index commit пре 3 година SV.js d8e79ace03 index commit пре 3 година SY.js d8e79ace03 index commit пре 3 година SZ.js d8e79ace03 index commit пре 3 година TC.js d8e79ace03 index commit пре 3 година TD.js d8e79ace03 index commit пре 3 година TG.js d8e79ace03 index commit пре 3 година TH.js d8e79ace03 index commit пре 3 година TJ.js d8e79ace03 index commit пре 3 година TK.js d8e79ace03 index commit пре 3 година TL.js d8e79ace03 index commit пре 3 година TM.js d8e79ace03 index commit пре 3 година TN.js d8e79ace03 index commit пре 3 година TO.js d8e79ace03 index commit пре 3 година TR.js d8e79ace03 index commit пре 3 година TT.js d8e79ace03 index commit пре 3 година TV.js d8e79ace03 index commit пре 3 година TW.js d8e79ace03 index commit пре 3 година TZ.js d8e79ace03 index commit пре 3 година UA.js d8e79ace03 index commit пре 3 година UG.js d8e79ace03 index commit пре 3 година US.js d8e79ace03 index commit пре 3 година UY.js d8e79ace03 index commit пре 3 година UZ.js d8e79ace03 index commit пре 3 година VA.js d8e79ace03 index commit пре 3 година VC.js d8e79ace03 index commit пре 3 година VE.js d8e79ace03 index commit пре 3 година VG.js d8e79ace03 index commit пре 3 година VI.js d8e79ace03 index commit пре 3 година VN.js d8e79ace03 index commit пре 3 година VU.js d8e79ace03 index commit пре 3 година WF.js d8e79ace03 index commit пре 3 година WS.js d8e79ace03 index commit пре 3 година YE.js d8e79ace03 index commit пре 3 година YT.js d8e79ace03 index commit пре 3 година ZA.js d8e79ace03 index commit пре 3 година ZM.js d8e79ace03 index commit пре 3 година ZW.js d8e79ace03 index commit пре 3 година alt-af.js d8e79ace03 index commit пре 3 година alt-an.js d8e79ace03 index commit пре 3 година alt-as.js d8e79ace03 index commit пре 3 година alt-eu.js d8e79ace03 index commit пре 3 година alt-na.js d8e79ace03 index commit пре 3 година alt-oc.js d8e79ace03 index commit пре 3 година alt-sa.js d8e79ace03 index commit пре 3 година alt-ww.js d8e79ace03 index commit пре 3 година tum/shaqfindbeds - Gogs: Simplico Git Service

説明なし

stacked.html 2.5KB

123456789101112131415161718192021222324252627282930
  1. {% load i18n admin_urls static %}
  2. <div class="js-inline-admin-formset inline-group"
  3. id="{{ inline_admin_formset.formset.prefix }}-group"
  4. data-inline-type="stacked"
  5. data-inline-formset="{{ inline_admin_formset.inline_formset_data }}">
  6. <fieldset class="module {{ inline_admin_formset.classes }}">
  7. {% if inline_admin_formset.formset.max_num == 1 %}
  8. <h2>{{ inline_admin_formset.opts.verbose_name|capfirst }}</h2>
  9. {% else %}
  10. <h2>{{ inline_admin_formset.opts.verbose_name_plural|capfirst }}</h2>
  11. {% endif %}
  12. {{ inline_admin_formset.formset.management_form }}
  13. {{ inline_admin_formset.formset.non_form_errors }}
  14. {% for inline_admin_form in inline_admin_formset %}<div class="inline-related{% if inline_admin_form.original or inline_admin_form.show_url %} has_original{% endif %}{% if forloop.last and inline_admin_formset.has_add_permission %} empty-form last-related{% endif %}" id="{{ inline_admin_formset.formset.prefix }}-{% if not forloop.last %}{{ forloop.counter0 }}{% else %}empty{% endif %}">
  15. <h3><b>{{ inline_admin_formset.opts.verbose_name|capfirst }}:</b> <span class="inline_label">{% if inline_admin_form.original %}{{ inline_admin_form.original }}{% if inline_admin_form.model_admin.show_change_link and inline_admin_form.model_admin.has_registered_model %} <a href="{% url inline_admin_form.model_admin.opts|admin_urlname:'change' inline_admin_form.original.pk|admin_urlquote %}" class="{% if inline_admin_formset.has_change_permission %}inlinechangelink{% else %}inlineviewlink{% endif %}">{% if inline_admin_formset.has_change_permission %}{% translate "Change" %}{% else %}{% translate "View" %}{% endif %}</a>{% endif %}
  16. {% else %}#{{ forloop.counter }}{% endif %}</span>
  17. {% if inline_admin_form.show_url %}<a href="{{ inline_admin_form.absolute_url }}">{% translate "View on site" %}</a>{% endif %}
  18. {% if inline_admin_formset.formset.can_delete and inline_admin_formset.has_delete_permission and inline_admin_form.original %}<span class="delete">{{ inline_admin_form.deletion_field.field }} {{ inline_admin_form.deletion_field.label_tag }}</span>{% endif %}
  19. </h3>
  20. {% if inline_admin_form.form.non_field_errors %}{{ inline_admin_form.form.non_field_errors }}{% endif %}
  21. {% for fieldset in inline_admin_form %}
  22. {% include "admin/includes/fieldset.html" %}
  23. {% endfor %}
  24. {% if inline_admin_form.needs_explicit_pk_field %}{{ inline_admin_form.pk_field.field }}{% endif %}
  25. {% if inline_admin_form.fk_field %}{{ inline_admin_form.fk_field.field }}{% endif %}
  26. </div>{% endfor %}
  27. </fieldset>
  28. </div>