templates/task/publish.html
changeset 236 39f83b4cf557
parent 235 e338eaeccad7
equal deleted inserted replaced
235:e338eaeccad7 236:39f83b4cf557
     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 and cannot be edited there after.<br /><br />
       
     8     Only you will have reviewering rights on this task. But you can request other users also to reviewer the task.
       
     9     <sup><a href="/about/addreviewers/" target="_blank">learn more</a></sup><br /><br />
       
    10     This action cannot be undone.
       
    11     <br />
       
    12     Please confirm if you want to publish.
       
    13     <form action="" method="post">
       
    14         <input value="Publish" type="submit">
       
    15     </form>
       
    16 {% endblock %}