pytask/templates/task/select_user.html
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 11 Jan 2011 17:40:14 +0530
changeset 145 4252da60a4ef
parent 125 9b0812962133
permissions -rw-r--r--
submit report works fine

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