21 lines
474 B
HTML
21 lines
474 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container text-center">
|
|
<h2>Redirecting...</h2>
|
|
|
|
If nothing happens, verify that Javascript is enabled in your browser and authorise it to open links and popups.
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
(function(){
|
|
{% for destination in destinations %}
|
|
window.open("{{destination.destination}}",'');
|
|
{% endfor %}
|
|
window.open('','_parent','');
|
|
window.close();
|
|
})()
|
|
</script>
|
|
|
|
{% endblock %}
|