templates/show_msg.html
author nishanth
Thu, 04 Feb 2010 22:37:15 +0530
changeset 21 c28774fe7ffd
parent 20 ec7b1751c161
child 111 c272d4c601cd
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 %}