pytask/templates/task/select_user.html
author Nishanth Amuluru <nishanth@fossee.in>
Sun, 09 Jan 2011 12:01:57 +0530
changeset 124 070f01dd7d8e
parent 123 41a7d8d49e35
child 125 9b0812962133
permissions -rw-r--r--
Select user works completely fine

{% extends 'base.html' %}
{% block content %}
    <a href="/task/claim/tid={{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 %}