2022-04-12 15:46:34 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{% block title %}Help!{% endblock %}</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-04-12 16:09:17 +02:00
|
|
|
{% if helper%}
|
|
|
|
Hallo {{helper.name}}
|
2022-04-12 17:04:47 +02:00
|
|
|
{%else%}
|
|
|
|
<a href="{%url 'register'%}">Anmelden</a>
|
2022-04-12 16:09:17 +02:00
|
|
|
{%endif%}
|
2022-04-12 15:46:34 +02:00
|
|
|
<div id="content">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|