74 lines
2.5 KiB
HTML
74 lines
2.5 KiB
HTML
{% load passbook_utils %}
|
|
{% load i18n %}
|
|
|
|
{% csrf_token %}
|
|
{% if form.non_field_errors %}
|
|
<div class="pf-c-form__group has-error">
|
|
<p class="pf-c-form__helper-text pf-m-error">
|
|
{{ form.non_field_errors }}
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
{% for field in form %}
|
|
{% if field.field.widget|fieldtype == 'HiddenInput' %}
|
|
{{ field }}
|
|
{% else %}
|
|
<div class="pf-c-form__group {% if field.errors %} has-error {% endif %}">
|
|
{% if field.field.widget|fieldtype == 'RadioSelect' %}
|
|
<label class="pf-c-form__label" {% if field.field.required %}class="required" {% endif %}
|
|
for="{{ field.name }}-{{ forloop.counter0 }}">
|
|
{{ field.label }}
|
|
</label>
|
|
{% for c in field %}
|
|
<div class="radio col-sm-10">
|
|
<input type="radio" id="{{ field.name }}-{{ forloop.counter0 }}"
|
|
name="{% if wizard %}{{ wizard.steps.current }}-{% endif %}{{ field.name }}" value="{{ c.data.value }}"
|
|
{% if c.data.selected %} checked {% endif %}>
|
|
<label class="pf-c-form__label" for="{{ field.name }}-{{ forloop.counter0 }}">{{ c.choice_label }}</label>
|
|
</div>
|
|
{% endfor %}
|
|
{% elif field.field.widget|fieldtype == 'Select' %}
|
|
<label class="pf-c-form__label" {% if field.field.required %}class="required" {% endif %}
|
|
for="{{ field.name }}-{{ forloop.counter0 }}">
|
|
{{ field.label }}
|
|
</label>
|
|
<div class="select col-sm-10">
|
|
{{ field }}
|
|
</div>
|
|
{% if field.help_text %}
|
|
<span>
|
|
{{ field.help_text }}
|
|
</span>
|
|
{% endif %}
|
|
{% elif field.field.widget|fieldtype == 'CheckboxInput' %}
|
|
<label class="checkbox-label">
|
|
{{ field }} {{ field.label }}
|
|
</label>
|
|
{% if field.help_text %}
|
|
<span>
|
|
{{ field.help_text }}
|
|
</span>
|
|
{% endif %}
|
|
{% else %}
|
|
<label class="pf-c-form__label" for="{{ field.name }}-{{ forloop.counter0 }}">
|
|
<span class="pf-c-form__label-text">{{ field.label }}</span>
|
|
{% if field.field.required %}
|
|
<span class="pf-c-form__label-required" aria-hidden="true">*</span>
|
|
{% endif %}
|
|
</label>
|
|
{{ field|css_class:'pf-c-form-control' }}
|
|
{% if field.help_text %}
|
|
<span>
|
|
{{ field.help_text }}
|
|
</span>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% for error in field.errors %}
|
|
<p class="pf-c-form__helper-text pf-m-error">
|
|
{{ error }}
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|