view templates/field.djhtml @ 187:4752861906b3

Added help_text to bundle description field Explains that a DESCRIPTION file can be used instead (if it exists)
author dellsystem <ilostwaldo@gmail.com>
date Sat, 27 Oct 2012 16:26:11 -0400
parents 5ab229c9d348
children
line wrap: on
line source

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

<div class="form-line">
    {{ field.label_tag }}
    <div class="form-input">
        {{ field }}
        {% if field.help_text %}
        <p>{{ field.help_text|safe }}</p>
        {% endif %}
    </div>
</div>