pytask/templates/task/assign.html
author anoop
Mon, 01 Feb 2010 16:52:34 +0530
changeset 21 3e676fa948c4
parent 18 293692eb8f06
permissions -rw-r--r--
changed the view my profile template.
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 %}