templates/task/assign.html
author nishanth
Fri, 05 Feb 2010 16:05:54 +0530
changeset 33 0d0ea7b188d5
parent 25 c0e4fc8b8b5b
child 156 7cad1e92713d
permissions -rw-r--r--
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     2
{% block content %}
c0e4fc8b8b5b 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 />
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     4
    <form action="" method="POST">
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     5
    {{form.as_table}}
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     6
    <input type="submit" value="Assign Task">
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     7
    </form>
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff changeset
     8
{% endblock %}