pytask/templates/task/select_user.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:38:21 +0530
changeset 558 fd3e6f5f01bd
parent 435 1217d808d70f
permissions -rw-r--r--
Use the form helpers templatetag module in the addreviewer template.

{% extends "base.html" %}

{% load form_helpers %}

{% block content %}
  <a href="{% url claim_task task.id %}">
    Click here
  </a> to return to the claims page.
  <br /><br />
  Select a user to assign this task.<br />
  {% as_div_form form "Assign Task Form" csrf_token "Assign Task" %}
{% endblock %}