view templates/simple_field.djhtml @ 181:9d2a2ab4e650

Recompile CSS
author dellsystem <ilostwaldo@gmail.com>
date Sun, 21 Oct 2012 00:14:43 -0400
parents 86129d185ddb
children
line wrap: on
line source

<div class="form-field">
    <strong>{{ field.label_tag }}</strong>

    {% if field.errors %}
    <div class="errors">{{ field.errors }}</div>
    {% endif %}

    {{ field }}

    {% if field.help_text %}
    <p>{{ field.help_text }}</p>
    {% endif %}
</div>