Reinit
This commit is contained in:
commit
98d91f13b1
1611 changed files with 49772 additions and 0 deletions
33
templates/cms/base_site.html
Normal file
33
templates/cms/base_site.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{% 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>
|
||||
<!-- <li><a href="{% url 'pdf-view' %}">Calendrier</a> </li>-->
|
||||
{% if has_permission %}
|
||||
<li><a href="#">Calendrier</a> </li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue