Files
mayan-edms/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html
2015-06-29 14:21:42 -04:00

74 lines
3.0 KiB
HTML

{% load i18n %}
{% load static %}
<h4>
{% include 'appearance/calculate_form_title.html' %}
</h4>
<hr>
<div class="well">
{% if is_multipart %}
<form enctype="multipart/form-data" method="{{ submit_method|default:'post' }}" action="{{ form_action }}">
{% else %}
<form method="{{ submit_method|default:'post' }}" action="{{ form_action }}">
{% endif %}
{% for form_name, form in forms.items %}
{% if submit_method != 'GET' and submit_method != 'get' %}
{% csrf_token %}
{% endif %}
{% if next %}
<input name="next" type="hidden" value="{{ next }}" />
{% endif %}
{% if previous %}
<input name="previous" type="hidden" value="{{ previous }}" />
{% endif %}
{% for hidden_field in hidden_fields %}
{{ hidden_field.as_hidden }}
{% endfor %}
{% if form.management_form %}
{% with form as formset %}
{{ formset.management_form }}
{% if form_display_mode_table %}
<table class="table">
<tbody>
<tr>
{% for field in formset.forms.0.visible_fields %}
<th>
{{ field.label_tag }}{% if field.field.required and not read_only %} ({% trans 'required' %}){% endif %}
</th>
{% endfor %}
</tr>
{% endif %}
{% for form in formset.forms %}
{% include 'appearance/generic_form_instance.html' %}
{% endfor %}
{% if form_display_mode_table %}
</tbody>
</table>
{% endif %}
{% endwith %}
{% else %}
{% include 'appearance/generic_form_instance.html' %}
{% endif %}
{% endfor %}
{% if not read_only %}
<div class="form-group">
<button class="btn btn-primary" name="{% if form.prefix %}{{ form.prefix }}-submit{% else %}submit{% endif %}" type="submit"><i class="fa fa-check"></i> {% if submit_label %}{{ submit_label }}{% else %}{% if object %}{% trans 'Save' %}{% else %}{% trans 'Submit' %}{% endif %}{% endif %}</button>
{% if previous %}
&nbsp;<a class="btn btn-default" onclick='{% if previous %}window.location.replace("{{ previous }}");{% else %}history.go(-1);{% endif %}'>
<i class="fa fa-cross"></i> {% if cancel_label %}{{ cancel_label }}{% else %}{% trans 'Cancel' %}{% endif %}
</a>
{% endif %}
</div>
{% endif %}
</form>
</div>