pytask/templates/task/publish.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 06 Jan 2011 19:07:04 +0530
branchbuildout
changeset 227 3c8f3b0e5b00
permissions -rw-r--r--
Add support for buildout and move the files to the directory to support buildout structure.

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