templates/task/publish.html
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 00:17:53 +0530
changeset 222 eeef395a4e02
parent 218 59107ce0a618
permissions -rw-r--r--
corrected a typo
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     2
{% block title %}
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     3
    {{task.title}}
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     4
{% endblock %}
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     5
{% block content %}
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     6
    <b>Disclaimer:</b><br />
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 114
diff changeset
     7
    Publishing a task will make the task visible to every one and cannot be edited there after.<br /><br />
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 140
diff changeset
     8
    Only you will have reviewering rights on this task. But you can request other users also to reviewer the task.
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 140
diff changeset
     9
    <sup><a href="/about/addreviewers/" target="_blank">learn more</a></sup><br /><br />
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
    10
    This action cannot be undone.
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 114
diff changeset
    11
    <br />
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    12
    Please confirm if you want to publish.
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    13
    <form action="" method="post">
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    14
        <input value="Publish" type="submit">
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    15
    </form>
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    16
{% endblock %}