pytask/templates/show_msg.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 30 Jan 2011 18:51:08 +0530
changeset 524 b942d6e3d204
parent 417 b37e541bf950
permissions -rw-r--r--
Fix the font size of the text in input boxes.

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