templates/task/publish.html
author nishanth
Fri, 26 Feb 2010 13:22:13 +0530
changeset 114 38793914921b
parent 111 c272d4c601cd
child 126 e5377fdaf110
permissions -rw-r--r--
mark task as complete functionality is added.

{% 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.
    Only you will have mentoring rights on this task. But you can request another user also to mentor the task.<br />
    This action cannot be undone.
    <br /><br />
    Please confirm if you want to publish.
    <form action="" method="post">
        <input value="Publish" type="submit">
    </form>
{% endblock %}