2
0
Fork 0
shiftregister/templates/base.html

17 lines
321 B
HTML
Raw Normal View History

<!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%}
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>