Lines Matching refs:custom_field

104           {% for custom_field in custom_fields %}
105 {% if custom_field.type == 'select' %}
106 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
107 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
109 …<select name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" id="i…
114 {% for custom_field_value in custom_field.custom_field_value %}
115 …address_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id ==…
135 {% if error_custom_field[custom_field.custom_field_id] %}
136 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
140 {% if custom_field.type == 'radio' %}
141 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
142 <label class="col-sm-2 control-label">{{ custom_field.name }}</label>
144 <div> {% for custom_field_value in custom_field.custom_field_value %}
145 …address_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id ==…
147 …<input type="radio" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_i…
151 …<input type="radio" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_i…
155 {% if error_custom_field[custom_field.custom_field_id] %}
156 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
160 {% if custom_field.type == 'checkbox' %}
161 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
162 <label class="col-sm-2 control-label">{{ custom_field.name }}</label>
164 <div> {% for custom_field_value in custom_field.custom_field_value %}
165 …address_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id in…
167 …<input type="checkbox" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_fiel…
171 …<input type="checkbox" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_fiel…
175 {% if error_custom_field[custom_field.custom_field_id] %}
176 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
180 {% if custom_field.type == 'text' %}
181 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
182 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
184custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if addres…
185 {% if error_custom_field[custom_field.custom_field_id] %}
186 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
190 {% if custom_field.type == 'textarea' %}
191 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
192 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
194custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" rows="5" placeholde…
195 {% if error_custom_field[custom_field.custom_field_id] %}
196 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
200 {% if custom_field.type == 'file' %}
201 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
202 <label class="col-sm-2 control-label">{{ custom_field.name }}</label>
204 …<button type="button" id="button-custom-field{{ custom_field.custom_field_id }}" data-loading-text…
205custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if addres…
206 <span>{{ address_custom_field[custom_field.custom_field_id]['name'] }}</span>
207 {% if error_custom_field[custom_field.custom_field_id] %}
208 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
212 {% if custom_field.type == 'date' %}
213 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
214 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
217custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if addres…
221 {% if error_custom_field[custom_field.custom_field_id] %}
222 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
226 {% if custom_field.type == 'time' %}
227 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
228 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
231custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if addres…
235 {% if error_custom_field[custom_field.custom_field_id] %}
236 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
240 {% if custom_field.type == 'datetime' %}
241 …<div class="form-group{% if custom_field.required %} required {% endif %} custom-field" data-sort=…
242 …="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_fie…
245custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if addres…
249 {% if error_custom_field[custom_field.custom_field_id] %}
250 <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>