templates/task/remove_user.html
author nishanth
Sat, 27 Feb 2010 10:48:43 +0530
changeset 128 f34e3a3e1439
parent 94 d1f59bbc2685
permissions -rw-r--r--
modified the notifications model. the sent_to is now a foreign key. now if we have a new type to be added, we can generate message and sub while creating notification. we can keep track of history using the role field in notification and task/sent_from
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     2
{% block title %}
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     3
    Remove users for {{task.title}}
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     4
{% endblock %}
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     5
{% block content %}
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     6
    <a href="/task/view/tid={{task.id}}">Click here</a> to return to {{task.title}}
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     7
    <form action="" method="post">
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     8
        {{form.as_p}}
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
     9
    <input value="Submit" type="submit">
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
    10
    </form>
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents:
diff changeset
    11
{% endblock %}