{% load django_listing %} {% csrf_token %} {% gethiddens_listing listing without="page,sort" %} {% block hiddens %} {% for hidden in listing.form_input_hiddens %} {% endfor %} {% endblock %} {% with attached_form.get_form as form %} {% if attached_form.display_errors and form.non_field_errors %} {% endif %} {% for row in attached_form.layout %}
{% for field_name in row %} {% get_form_field form field_name as field %} {% get_attachedform_col attached_form field_name as col %} {% if field %}
{% if attached_form.display_errors and field.errors %} {{ field.errors }}{% endif %}
{% if not col.no_mass_op %} {% endif %} {{ field.label_tag }}{% if field.field.required %}*{% endif %} {{ field }}
{% if ending %}{{ ending }}{% endif %} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %}
{% endif %} {% endfor %}
{% endfor %}
{% for buttons_line in attached_form.buttons %}
{% for action,label,icon,css_class in buttons_line %} {% listing_has_permission_for_action listing action as has_button_perm %} {% listing_confirm_msg_for_action listing action as confirm_msg %} {% listing_confirm_msg_nb_items_for_action listing action as confirm_msg_nb_items %} {% endfor %}
{% endfor %}
{% endwith %}