templates/task/close.html
author nishanth
Wed, 03 Mar 2010 11:19:42 +0530
changeset 191 3bfe70742aa8
parent 126 e5377fdaf110
child 219 f04a1ec7a07f
permissions -rw-r--r--
now requested mentors can see unpublished task but not comment on it.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     2
{% block title %}
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     3
    {{task.title}}
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     4
{% endblock %}
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     5
{% block content %}
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     6
    <b>Disclaimer:</b><br />
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     7
    If a task is closed, it implies the task is no more a valid task. The task cannot be edited or added subtasks/dependencies.
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     8
    Please <a href="/task/assigncredits/tid={{task.id}}">click here</a> to return to assign credits page if you want to request assign of credits.
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
     9
    You cannot request assign of credits and all the pending requests on this task will be made invalid when a task is closed.<br /><br />
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    10
    
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    11
    The only difference between marking a task as closed and completed is that the tasks depending on completed tasks will be free to be claimed 
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    12
    and worked on. This action cannot be undone. If you have double checked every thing, please provide a reason and close the task.<br />
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    13
    
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    14
    <br />
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    15
    {% if error %}
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    16
    Please provide a reason for closing the task.
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    17
    {% endif %}
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    18
    <form action="" method="post">
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    19
        Reason: <input type="text" name="reason">
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    20
        <input value="Close the task" type="submit">
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    21
    </form>
e5377fdaf110 added the functionality to close a task.
nishanth
parents:
diff changeset
    22
{% endblock %}