templates/task/publish.html
author nishanth
Sat, 27 Feb 2010 01:27:35 +0530
changeset 127 71888e23f323
parent 126 e5377fdaf110
child 140 7bdcbb4f2c27
permissions -rw-r--r--
created a view for about pages and added about pages for mentor and addmentors.
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 />
127
71888e23f323 created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents: 126
diff changeset
     8
    Only you will have mentoring rights on this task. But you can request other users also to mentor the task.
71888e23f323 created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents: 126
diff changeset
     9
    <sup><a href="/about/addmentors/">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 %}