pytask/templates/show_msg.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 15 Jan 2011 21:21:49 +0530
changeset 417 b37e541bf950
parent 337 2211ef705675
permissions -rw-r--r--
Manipulate all the templates to use {% url %} templatetag instead of hard coded 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 %}