templates/task/publish.html
author nishanth
Fri, 26 Feb 2010 11:34:17 +0530
changeset 113 ea962d5fe99e
parent 111 c272d4c601cd
child 114 38793914921b
permissions -rw-r--r--
added option of specifying if previous mentors and comments must be removed in publish task event.

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
    <b>Disclaimer:</b><br />
    Publishing a task will make the task visible to every one.
    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.
    But mentors can be added by sending them a request later on.<br /><br />
    Please confirm if you want to publish.
    <form action="" method="post">
        <input value="Publish" type="submit">
    </form>
{% endblock %}