templates/task/publish.html
author nishanth
Fri, 26 Feb 2010 17:49:26 +0530
changeset 122 daee11bdfbaa
parent 114 38793914921b
child 126 e5377fdaf110
permissions -rw-r--r--
now rid is not the position argument. it is request id.
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 />
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     7
    Publishing a task will make the task visible to every one.
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
     8
    Only you will have mentoring rights on this task. But you can request another user also to mentor the task.<br />
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
     9
    This action cannot be undone.
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
    10
    <br /><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 %}