pytask/templates/task/select_user.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 15 Jan 2011 21:21:49 +0530
changeset 417 b37e541bf950
parent 363 9b0812962133
child 431 fcc87a3f0311
permissions -rw-r--r--
Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.

{% extends 'base.html' %}
{% 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 />
    <form action="" method="POST">
	    {% csrf_token %}
    {{form.as_table}}
    <input type="submit" value="Assign Task">
    </form>
{% endblock %}