12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="utf-8" />
- <title>directPage</title>
- </head>
- <body>
- {% if alertMsg != None %}
- <script type="text/javascript">
- {% autoescape off %}
- alert ('{{alertMsg}}');
- {% endautoescape %}
- </script>
- {% endif %}
- {% if dirLink %}
- <script type="text/javascript">
- window.location.href = '{{dirLink}}';
- </script>
- {% endif %}
- </body>
- </html>
|