matekasse/Website/templates/redirect.html

13 lines
274 B
HTML
Raw Normal View History

2024-02-21 21:02:07 +00:00
{% 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 %}