111
|
1 |
{% extends 'base.html' %}
|
|
2 |
{% block title %}
|
|
3 |
{{task.title}}
|
|
4 |
{% endblock %}
|
|
5 |
{% block content %}
|
|
6 |
<b>Disclaimer:</b><br />
|
|
7 |
Publishing a task will make the task visible to every one.
|
114
|
8 |
Only you will have mentoring rights on this task. But you can request another user also to mentor the task.<br />
|
|
9 |
This action cannot be undone.
|
|
10 |
<br /><br />
|
111
|
11 |
Please confirm if you want to publish.
|
|
12 |
<form action="" method="post">
|
|
13 |
<input value="Publish" type="submit">
|
|
14 |
</form>
|
|
15 |
{% endblock %}
|