templates/task/complete.html
author nishanth
Fri, 26 Feb 2010 13:22:13 +0530
changeset 114 38793914921b
child 219 f04a1ec7a07f
permissions -rw-r--r--
mark task as complete functionality is added.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
114
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     2
{% block title %}
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     3
    {{task.title}}
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     4
{% endblock %}
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     5
{% block content %}
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     6
    <b>Disclaimer:</b><br />
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     7
    Marking a task as complete implies the task has been completed successfully. It implies that all the required files 
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     8
    are available as attatchments in comments and all the users worked on this task were credited accordingly.<br /><br />
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
     9
    This action sets the task as completed and frees all the tasks depending on this task. Henceforth, the task <strong>can not</strong> be 
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    10
    commented upon or edited by anyone.<br /><br />
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    11
    If there are pending requests for assigning credits, they will be deleted and admins will not be able to approve those requests.
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    12
    Hence you cannot assign credits to anyone for this task anymore. You must wait for the requests to be approved by any of the admins. 
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    13
    If you would like to request for assigning more credits, return to assign credits page by clicking 
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    14
    <a href="/task/assigncredits/tid={{task.id}}">here</a>.<br /><br />
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    15
    If you have double checked everything, confirm this action by clicking the button below.
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    16
    <form action="" method="post">
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    17
        <input value="Mark as Complete" type="submit">
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    18
    </form>
38793914921b mark task as complete functionality is added.
nishanth
parents:
diff changeset
    19
{% endblock %}