33 lines
888 B
HTML
33 lines
888 B
HTML
{% load static %}
|
|
{% load urls_extra %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{% block titre %}{% endblock %}</title>
|
|
<link rel="stylesheet" href={% static 'css/bootstrap.css' %} />
|
|
<link rel="stylesheet" href={% static 'css/main.css' %} />
|
|
{% block extrahead %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% block header %}
|
|
<ul id="menu">
|
|
{% if user.is_authenticated %}
|
|
<li>Vous êtes connecté en tant que {{user.username }}</li>
|
|
<li><a href = '/logout/'>Déconnexion</a></li>
|
|
{% if user.profile.is_chef %}
|
|
<li><a href = '/admin/'>Administration</a></li>
|
|
{% endif %}
|
|
{% else %}
|
|
<li><a href='/login/'>Connexion</a></li>
|
|
<li><a href='/registration/'>Créer un compte</a></li>
|
|
{% endif %}
|
|
<li><a href="{% url "partitions.views.liste" %}">Partitions</a></li>
|
|
</ul>
|
|
{% endblock %}</header>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|