ernestophone.ens.fr/templates/gestion/base.html

34 lines
888 B
HTML
Raw Normal View History

2015-03-17 19:03:51 +01:00
{% 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>