34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
{% extends "./base.html" %}
|
|
|
|
{% block title %}EDS{% endblock %}
|
|
|
|
{% block branding %}<h1 id="site-name"><a href="{% url 'home' %}">Ecole Santé-social Pierre-Coullery</a> Formation en Education sociale</h1>{% endblock %}
|
|
{% block usertools %}
|
|
<div id="user-tools">
|
|
{% if user.is_authenticated %}
|
|
{% block welcome-msg %}Bienvenue <strong>{% firstof user.username %}</strong>.{% endblock %}
|
|
<a href="http://localhost:8000">Site public</a> <a href="{% url 'admin:index' %}">Admin</a>
|
|
{% else %}
|
|
<a href="{% url 'admin:index' %}">Admin</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
{% block nav-global %}{% endblock %}
|
|
{% block breadcrumbs %}
|
|
<div class="breadcrumbs">
|
|
<ul>
|
|
<li><a href="{% url 'home' %}">Accueil</a> </li>
|
|
<li><a href="{% url 'domaine-list' %}">Domaines</a> </li>
|
|
<li><a href="{% url 'processus-list' %}">Processus</a> </li>
|
|
<li><a href="{% url 'module-list' %}">Modules</a> </li>
|
|
<li><a href="{% url 'periodes' %}">Périodes</a> </li>
|
|
|
|
<!-- <li><a href="{% url 'evaluation' %}">Evaluation</a> </li> -->
|
|
|
|
<li><a href="{% url 'document-list' %}">Documents</a> </li>
|
|
{% if has_permission %}
|
|
<li><a href="#">Calendrier</a> </li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|