ernestophone.ens.fr/templates/gestion/base.html
2015-07-22 16:08:59 -04:00

44 lines
1.1 KiB
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/ernesto.css' %} />
{% block extrahead %}{% endblock %}
</head>
<body>
<div id="page">
<header>
{% block header %}
<div id="logo_ernesto">
<a href='/'><img src="{%static "logo.png" %}" alt="L'Ernestophone" /></a>
</div>
<nav>
<ul id="menu">
<li><a href="{% url 'partitions.views.liste' %}">Partitions</a></li>
{% if user.is_authenticated %}
{% if user.profile.is_chef %}
<li><a href = '/admin/'>Administration</a></li>
{% endif %}
<li><a href='/divers/'>Divers</a></li>
<li>Connecté en tant que {{user.username }}</li>
<li><a href = '/logout/'>Déconnexion</a></li>
{% else %}
<li><a href='/login/'>Connexion</a></li>
<li><a href='/registration/'>Créer un compte</a></li>
{% endif %}
</ul>
</nav>
{% endblock %}</header>
<section id="content">
{% block content %}
{% endblock %}
</section>
</div>
</body>
</html>