126
|
1 |
{% extends 'base.html' %}
|
|
2 |
{% block title %}
|
|
3 |
{{task.title}}
|
|
4 |
{% endblock %}
|
|
5 |
{% block content %}
|
|
6 |
<b>Disclaimer:</b><br />
|
|
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.
|
|
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.
|
|
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 />
|
|
10 |
|
|
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
|
|
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 />
|
|
13 |
|
|
14 |
<br />
|
|
15 |
{% if error %}
|
|
16 |
Please provide a reason for closing the task.
|
|
17 |
{% endif %}
|
|
18 |
<form action="" method="post">
|
|
19 |
Reason: <input type="text" name="reason">
|
|
20 |
<input value="Close the task" type="submit">
|
|
21 |
</form>
|
|
22 |
{% endblock %}
|