pytask/templates/show_msg.html
author nishanth
Mon, 01 Feb 2010 11:10:29 +0530
changeset 14 f2623fb8041a
parent 13 4da58abdf6ff
permissions -rw-r--r--
implemented add another mentor functionality to a task.

{% extends 'base.html' %}
{% block content %}
    {% if message %}
        {{message}}<br />
    {% endif %}
    {% if redirect_url %}
        <a href={{redirect_url}}>click here</a> to return to {{url_desc}}
    {% else %}
        <a href="/">click here</a> to return to Homepage
    {% endif %}
{% endblock %}