Repository URL to install this package:
|
Version:
2.4.1rc1 ▾
|
wagtail_gardentronic
/
wagtail
/
admin
/
templates
/
wagtailadmin
/
edit_handlers
/
inline_panel.html
|
|---|
{% load i18n %}
{% load wagtailadmin_tags %}
{{ self.formset.management_form }}
<ul class="multiple" id="id_{{ self.formset.prefix }}-FORMS">
{% if self.formset.non_form_errors %}
<li class="error-message">
{% for error in self.formset.non_form_errors %}
<span>{{ error|escape }}</span>
{% endfor %}
</li>
{% endif %}
{% for child in self.children %}
{% include "wagtailadmin/edit_handlers/inline_panel_child.html" %}
{% endfor %}
</ul>
<script type="text/django-form-template" id="id_{{ self.formset.prefix }}-EMPTY_FORM_TEMPLATE">
{% escapescript %}
{% include "wagtailadmin/edit_handlers/inline_panel_child.html" with child=self.empty_child %}
{% endescapescript %}
</script>
<p class="add">
<a class="button bicolor icon icon-plus" id="id_{{ self.formset.prefix }}-ADD">
{% blocktrans with label=self.label|lower %}Add {{ label }}{% endblocktrans %}
</a>
</p>