templates/task/publish.html
author nishanth
Fri, 26 Feb 2010 02:52:32 +0530
changeset 111 c272d4c601cd
child 114 38793914921b
permissions -rw-r--r--
added the functionality to publish 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 />
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     7
    Publishing a task will make the task visible to every one.
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     8
    All the existing mentors will be removed from the list of mentors and only you will have the rights to edit and mentor the task.
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
     9
    But mentors can be added by sending them a request later on.<br /><br />
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    10
    Please confirm if you want to publish.
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    11
    <form action="" method="post">
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    12
        <input value="Publish" type="submit">
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    13
    </form>
c272d4c601cd added the functionality to publish a task.
nishanth
parents:
diff changeset
    14
{% endblock %}