view templates/simple_field.djhtml @ 190:a4f88ac85837

Changes: Now guest users cannot see revision history and they also cannot see snippets posted by registered users. To see snippets posted by registered users, one has to login.
author ahsanalishahid <ahsan.ali.shahid@gmail.com>
date Thu, 20 Jun 2013 17:17:16 +0500
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>