summaryrefslogtreecommitdiff
path: root/templates/task/publish.html
blob: 7f6c062e9230ce4cc31f9ac5c514f4310d9d0ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
    <b>Disclaimer:</b><br />
    Publishing a task will make the task visible to every one and cannot be edited there after.<br /><br />
    Only you will have reviewering rights on this task. But you can request other users also to reviewer the task.
    <sup><a href="/about/addreviewers/" target="_blank">learn more</a></sup><br /><br />
    This action cannot be undone.
    <br />
    Please confirm if you want to publish.
    <form action="" method="post">
        <input value="Publish" type="submit">
    </form>
{% endblock %}