view templates/simple_field.djhtml @ 171:a57d15b044a7

Add help_text to name field for bundles Explains that the name field is meant to hold a slug, etc.
author dellsystem <ilostwaldo@gmail.com>
date Sat, 20 Oct 2012 00:29:49 -0400
parents ba51d3b7740b
children 5e10ea8052b5
line wrap: on
line source

{{ field.label_tag }}
{{ field }}

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

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