MSRS/templates/base.html

59 lines
1.3 KiB
HTML
Raw Normal View History

2021-04-18 20:58:18 +02:00
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<title>{% block title %}{% endblock %} MSRS</title>
<link rel="stylesheet" type="text/css" href="{% static 'main.css' %}"/>
<link rel="stylesheet" type="text/css" href="{% static 'dracula.css' %}"/>
{% block styles %}{% endblock %}
</head>
<body>
<header>
<h1><a href="/"><span class="align">Zeus WPI Membership registration system</span></a></h1>
<nav>
<div class="align">
<ul class="alignRight">
{% if user.is_authenticated %}
<li class="deemphasized">
<span>
Hallo, {{ user.username }}
</span>
</li>
{% if user.is_staff or user.is_superuser %}
<li>
<a href="{% url 'admin:index' %}">
Admininterface
</a>
</li>
{% endif %}
<li>
<a href="{% url 'users:logout' %}">
Afmelden
</a>
</li>
{% else %}
<li>
<a href="{% url 'oauth:login' %}">
Inloggen
</a>
</li>
{% endif %}
</ul>
<div style="clear: both;"></div>
</div>
</nav>
</header>
<main class="align">
{% block content %}{% endblock %}
</main>
<footer class="align">
<a href="https://git.zeus.gent/bestuur/msrs">Broncode</a> |
Ontwikkeld door <a href="https://zeus.gent/">Zeus WPI</a>
</footer>
</body>
</html>