pytask/templates/show_msg.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 01 Feb 2011 19:38:41 +0530
changeset 550 a606a40584f7
parent 417 b37e541bf950
permissions -rw-r--r--
Base views should take keyword arguments and should use them for URLs.

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