pytask/templates/show_msg.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 22:48:44 +0530
changeset 337 2211ef705675
child 417 b37e541bf950
permissions -rw-r--r--
Added template for show_msg

{% extends 'base.html' %}
{% block js_script %}
    <script language="JavaScript"> 
    <!--
     function getgoing()
        {
            window.location="{{redirect_url}}";
        }
     
    setTimeout('getgoing()',5000);
    //--> 
    </script>
{% endblock %}
{% block content %}

    {% if message %}
        {{message}}<br />
    {% endif %}
    You will be redirected to {{url_desc}} page in 5 seconds
    <!--
    {% 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 %}