view templates/simple_field.djhtml @ 164:345936c0fed7

remove distribute from pip-requirements This was causing trouble because pip would attempt to install a replacement distribute and thus break its own installation.
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Wed, 17 Oct 2012 10:13:11 -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 %}