templates/task/publish.html
author nishanth
Sun, 28 Feb 2010 22:58:58 +0530 (2010-02-28)
changeset 154 420f974328cc
parent 140 7bdcbb4f2c27
child 218 59107ce0a618
permissions -rw-r--r--
modified add_user and rem_user methods to also include the mentor who is doing it.
{% 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 and cannot be edited there after.<br /><br />
    Only you will have mentoring rights on this task. But you can request other users also to mentor the task.
    <sup><a href="/about/addmentors/" target="_blank">learn more</a></sup><br /><br />
    This action cannot be undone.
    <br />
    Please confirm if you want to publish.
    <form action="" method="post">
        <input value="Publish" type="submit">
    </form>
{% endblock %}