pytask/templates/templatetags/_as_div_form.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 30 Jan 2011 18:51:08 +0530
changeset 524 b942d6e3d204
parent 435 1217d808d70f
permissions -rw-r--r--
Fix the font size of the text in input boxes.

{% load form_helpers %}

<form action="{{ action_url }}" method="post"
    {% if file_support %}
      enctype="multipart/form-data"
    {% else %}
      >
    {% endif %}
  {% csrf_token %}
  <div id="form">
    {% for field in form %}
      {% as_div_field field %}
    {% endfor %}
    <p class="submit"><button type="submit">{{ button_label }}</button></p>
  </div>
</form>