templates/task/close.html
author Nishanth Amuluru <nishanth@fossee.in>
Wed, 05 Jan 2011 18:52:48 +0530
changeset 217 307f699e6102
parent 126 e5377fdaf110
child 219 f04a1ec7a07f
permissions -rw-r--r--
Now browse tasks page does not display textbooks

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
    <b>Disclaimer:</b><br />
    If a task is closed, it implies the task is no more a valid task. The task cannot be edited or added subtasks/dependencies.
    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.
    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 />
    
    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 
    and worked on. This action cannot be undone. If you have double checked every thing, please provide a reason and close the task.<br />
    
    <br />
    {% if error %}
    Please provide a reason for closing the task.
    {% endif %}
    <form action="" method="post">
        Reason: <input type="text" name="reason">
        <input value="Close the task" type="submit">
    </form>
{% endblock %}