Anfänglicher Commit: Producion Version Stand: Oktober 2014
This commit is contained in:
9
templates/form.html
Normal file
9
templates/form.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{% for field in form.visible_fields %}
|
||||
<div>
|
||||
<label for="id_{{ field.html_name}}" class="field_name {{ field.css_classes }}">{{ field.label }}</label>
|
||||
{{ field }}
|
||||
{%if field.help_text %}<p class="help_text">{{field.help_text}}</p>{% endif %}
|
||||
{%if field.errors %}{{ field.errors }}{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
|
||||
Reference in New Issue
Block a user