view templates/simple_field.djhtml @ 172:5e10ea8052b5

Make form field labels bold In simple_field.djhtml
author dellsystem <ilostwaldo@gmail.com>
date Sat, 20 Oct 2012 00:30:17 -0400
parents ba51d3b7740b
children 86129d185ddb
line wrap: on
line source

<strong>{{ field.label_tag }}</strong>
{{ field }}

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

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