templates/task/publish.html
changeset 111 c272d4c601cd
child 114 38793914921b
equal deleted inserted replaced
110:3685c2333448 111:c272d4c601cd
       
     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.
       
     8     All the existing mentors will be removed from the list of mentors and only you will have the rights to edit and mentor the task.
       
     9     But mentors can be added by sending them a request later on.<br /><br />
       
    10     Please confirm if you want to publish.
       
    11     <form action="" method="post">
       
    12         <input value="Publish" type="submit">
       
    13     </form>
       
    14 {% endblock %}