pytask/templates/show_msg.html
author anoop
Mon, 01 Feb 2010 14:08:18 +0530
changeset 16 d57e63325759
parent 14 f2623fb8041a
permissions -rw-r--r--
added view profile and edit profile functionalities.

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