You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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