templates/task/publish.html
author nishanth
Sat, 27 Feb 2010 00:48:50 +0530
changeset 126 e5377fdaf110
parent 114 38793914921b
child 127 71888e23f323
permissions -rw-r--r--
added the functionality to close a task.
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 />
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 114
diff changeset
     8
    Only you will have mentoring rights on this task. But you can request other users also to mentor the task. <br /><br />
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
     9
    This action cannot be undone.
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 114
diff changeset
    10
    <br />
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    11
    Please confirm if you want to publish.
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    12
    <form action="" method="post">
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    13
        <input value="Publish" type="submit">
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    14
    </form>
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    15
{% endblock %}