pytask/templates/task/select_user.html
author Nishanth Amuluru <nishanth@fossee.in>
Sun, 09 Jan 2011 11:52:30 +0530
changeset 361 41a7d8d49e35
child 362 070f01dd7d8e
permissions -rw-r--r--
Added the template
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
361
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
    <a href="/task/claim/tid={{task.id}}">click here</a> to return to the claims page.<br /><br />
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
    Select a user to assign this task.<br />
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
    <form action="" method="POST">
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
    {{form.as_table}}
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
    <input type="submit" value="Assign Task">
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
    </form>
41a7d8d49e35 Added the template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
{% endblock %}