Lines Matching refs:custom_field

60           {% for custom_field in custom_fields %}
61 {% if custom_field.type == 'select' %}
62 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
63 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
65 …<select name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" id="i…
67 {% for custom_field_value in custom_field.custom_field_value %}
68 …account_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id ==…
75 {% if error_custom_field[custom_field.custom_field_id] %}
76 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
81 {% if custom_field.type == 'radio' %}
82 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
83 <label class="col-sm-2 control-label">{{ custom_field.name }}</label>
86 {% for custom_field_value in custom_field.custom_field_value %}
88 …account_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id ==…
90 …<input type="radio" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_i…
94 …<input type="radio" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_i…
100 {% if error_custom_field[custom_field.custom_field_id] %}
101 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
106 {% if custom_field.type == 'checkbox' %}
107 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
108 <label class="col-sm-2 control-label">{{ custom_field.name }}</label>
111 {% for custom_field_value in custom_field.custom_field_value %}
113 …account_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id in…
115 …<input type="checkbox" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_fiel…
119 …<input type="checkbox" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_fiel…
125 {% if error_custom_field[custom_field.custom_field_id] %}
126 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
131 {% if custom_field.type == 'text' %}
132 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
133 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
135custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if accoun…
136 {% if error_custom_field[custom_field.custom_field_id] %}
137 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
142 {% if custom_field.type == 'textarea' %}
143 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
144 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
146custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" rows="5" placeholde…
147 {% if error_custom_field[custom_field.custom_field_id] %}
148 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
153 {% if custom_field.type == 'file' %}
154 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
155 <label class="col-sm-2 control-label">{{ custom_field.name }}</label>
157 …<button type="button" id="button-custom-field{{ custom_field.custom_field_id }}" data-loading-text…
158custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if accoun…
159 <span>{{ account_custom_field[custom_field.custom_field_id]['name'] }}</span>
160 {% if error_custom_field[custom_field.custom_field_id] %}
161 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
166 {% if custom_field.type == 'date' %}
167 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
168 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
171custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if accoun…
175 {% if error_custom_field[custom_field.custom_field_id] %}
176 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
181 {% if custom_field.type == 'time' %}
182 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
183 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
186custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if accoun…
190 {% if error_custom_field[custom_field.custom_field_id] %}
191 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
196 {% if custom_field.type == 'datetime' %}
197 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
198 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
201custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if accoun…
205 {% if error_custom_field[custom_field.custom_field_id] %}
206 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>