You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
962 B

{% comment %}
field - поле
id - id поля
classes - css классы
required - отметить, что поле обязательное?
label - заголовок поля
label_inline - вывести заголовок и поле на одной строке?
help - подсказка по заполнению поля
is_ajax - ajax-форма?
no_clear_after - не добавлять очистку float после блока
{% endcomment %}
<div{% if id %} id="{{ id }}"{% endif %}{% if classes %} class="{{ classes }}"{% endif %}>
{% if label %}{{ label }}:{% if required %} <span class="required">*</span>{% endif %}{% endif %}
{% if label_inline %}
{{ field }}
{% else %}
<p>{{ field }}</p>
{% endif %}
{% if help %}<p><span class="help-text">{{ help }}</span></p>{% endif %}
{% if not is_ajax %}{{ field.errors }}{% endif %}
</div>
{% if not no_clear_after %}<div class="clear"></div>{% endif %}