pytask/templates/task/assign.html
author nishanth
Mon, 01 Feb 2010 15:00:40 +0530
changeset 18 293692eb8f06
permissions -rw-r--r--
added the functionality to assign a task to one of the claimed users.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     2
{% block content %}
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     3
    Select a user to assign this task.<br />
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     4
    <form action="" method="POST">
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     5
    {{form.as_table}}
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     6
    <input type="submit" value="Assign Task">
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     7
    </form>
293692eb8f06 added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     8
{% endblock %}