templates/task/publish.html
author nishanth
Sat, 27 Feb 2010 10:48:43 +0530
changeset 128 f34e3a3e1439
parent 127 71888e23f323
child 140 7bdcbb4f2c27
permissions -rw-r--r--
modified the notifications model. the sent_to is now a foreign key. now if we have a new type to be added, we can generate message and sub while creating notification. we can keep track of history using the role field in notification and task/sent_from

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