templates/task/publish.html
author nishanth
Sat, 27 Feb 2010 00:48:50 +0530
changeset 126 e5377fdaf110
parent 114 38793914921b
child 127 71888e23f323
permissions -rw-r--r--
added the functionality to close a task.

{% 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. <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 %}