eds/templates/cms/base_site.html

38 lines
1.7 KiB
HTML
Raw Normal View History

2017-04-07 09:17:20 +02:00
{% extends "./base.html" %}
{% block title %}EDS{% endblock %}
2017-08-13 22:58:46 +02:00
{% block branding %}
2018-05-23 21:16:25 +02:00
<h1 id="site-name"><a href="{% url 'home' %}">Ecole Santé-social Pierre-Coullery</a> &nbsp;&nbsp; Formation en Education sociale, dipl. ES</h1>
2017-08-13 22:58:46 +02:00
{% endblock %}
2017-04-07 09:17:20 +02:00
{% block usertools %}
2017-08-13 22:58:46 +02:00
<div id="user-tools">
{% if user.is_authenticated %}
{% block welcome-msg %}Bienvenue <strong>{% firstof user.username %}</strong>.{% endblock %}
2018-08-14 14:57:29 +02:00
<a href="{% url 'logout' %}">Déconnexion</a>
2017-08-13 22:58:46 +02:00
{% else %}
2018-08-14 14:57:29 +02:00
<a href="{% url 'login' %}?next={{ request.path }}">Connexion</a>
2017-08-13 22:58:46 +02:00
{% endif %}
</div>
2017-04-07 09:17:20 +02:00
{% endblock %}
{% block nav-global %}{% endblock %}
{% block breadcrumbs %}
2017-08-13 22:58:46 +02:00
<div class="breadcrumbs">
<ul>
<li><a href="{% url 'home' %}">Accueil</a>&nbsp;&nbsp;</li>
<li><a href="{% url 'domaine-list' %}">Domaines</a>&nbsp;&nbsp;</li>
<li><a href="{% url 'processus-list' %}">Processus</a>&nbsp;&nbsp;</li>
<li><a href="{% url 'module-list' %}">Modules</a>&nbsp;&nbsp;</li>
2017-08-14 07:26:14 +02:00
<li><a href="{% url 'periodes' %}">Périodes</a>&nbsp;&nbsp;</li>
2017-08-13 22:58:46 +02:00
<li><a href="{% url 'competences' %}">Compétences</a>&nbsp;&nbsp;</li>
<li><a href="{% url 'travail' %}">Heures de formation</a>&nbsp;&nbsp;</li>
2018-02-16 15:11:06 +01:00
<li><a href="{% url 'concept-detail' 1 %}">Concept pédagogique</a>&nbsp;&nbsp;</li>
<li><a href="{% url 'concept-detail' 2 %}">Concept de formation</a>&nbsp;&nbsp;</li>
2018-02-16 11:14:31 +01:00
<li><a href="{% url 'uploaddoc-list' %}">Téléchargements</a>&nbsp;&nbsp;</li>
2018-08-16 11:02:49 +02:00
{% if user.is_staff %}
<li><a href="{% url 'admin:index' %}">Administration</a></li>
{% endif %}v
2017-08-13 22:58:46 +02:00
</ul>
</div>
2017-04-07 09:17:20 +02:00
{% endblock %}