litl/litl/templates/multirect.html
2021-01-06 09:48:36 +01:00

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