templates/show_msg.html
author nishanth
Sun, 28 Feb 2010 03:01:53 +0530
changeset 136 8632a44b743d
parent 111 c272d4c601cd
child 173 b8e7a4e86b35
permissions -rw-r--r--
deducing previous credits for a task using the request model. with a few changes, we can ditchax the credits model.

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