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.
 
 
 
 

20 lines
920 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 not label_inline %}<br />{% endif %}
{{ field }}
{% if help %}<br /><span class="help-text">{{ help }}</span>{% endif %}
{% if not is_ajax %}{{ field.errors }}{% endif %}
</div>
{% if not no_clear_after %}<div class="clear"></div>{% endif %}