mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 06:39:25 +00:00
13 lines
289 B
HTML
13 lines
289 B
HTML
{% load add_class %}
|
|
|
|
<div class="clearfix">
|
|
{{ field.label_tag }}
|
|
<div class="input">
|
|
{% if class %}{{ field|add_class:class }}{% else %}{{ field }}{% endif %}
|
|
{% if field.help_text %}
|
|
<span class="help-block">{{ field.help_text }}</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|