mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-21 00:49:54 +01:00
13 lines
230 B
HTML
13 lines
230 B
HTML
{% extends 'body_base.html' %}
|
|
{% block main %}
|
|
<main class="container justify-center flex-grow flex mx-auto mt-4 p-5">
|
|
Hello
|
|
{% if user.admin %}
|
|
admin
|
|
{% else %}
|
|
user
|
|
{% endif %}
|
|
|
|
{{settings}}
|
|
</main>
|
|
{% endblock %} |