matekasse/Website/templates/redirect.html
2024-02-21 22:02:07 +01:00

12 lines
274 B
HTML

{% extends "base.html" %}
{% block title %}
{% endblock %}
{% block content %}
<p>redirekting</p>
<a href="/list">destination</a>
{% endblock %}
{% block customscript %}
<script type="text/javascript" charset="utf-8">
window.location = "/list";
</script>
{% endblock %}