-
Accueil
-
+
{% endblock %}
diff --git a/templates/cms/404.html b/templates/cms/404.html
index e508b42..583595e 100644
--- a/templates/cms/404.html
+++ b/templates/cms/404.html
@@ -1,25 +1,28 @@
{% extends "./base_site.html" %}
{% load i18n static %}
-{% block extrastyle %}{{ block.super }}
-
{% endblock %}
+{% block extrastyle %}
+ {{ block.super }}
+
+
+{% endblock %}
{% block coltype %}colMS{% endblock %}
-{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
+{% block bodyclass %}
+ {{ block.super }} dashboard
+{% endblock %}
{% block breadcrumbs %}
- {% endblock %}
-
+{% endblock %}
{% block content %}
-
-
-Page non trouvée
-
+
+ Page non trouvée
+
{% endblock %}
diff --git a/templates/cms/base.html b/templates/cms/base.html
index 0ea7f2e..36090b0 100644
--- a/templates/cms/base.html
+++ b/templates/cms/base.html
@@ -2,18 +2,16 @@
{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
-
{% block title %}{% endblock %}
-
-
-
-
-
-
-
-{% block extrastyle %}
{% endblock %}
-{% if LANGUAGE_BIDI %}
{% endif %}
-{% block extrahead %}{% endblock %}
-{% block blockbots %}
{% endblock %}
+
{% block title %}{% endblock %}
+
+
+
+
+
+ {% block extrastyle %}
{% endblock %}
+ {% if LANGUAGE_BIDI %}
{% endif %}
+ {% block extrahead %}{% endblock %}
+ {% block blockbots %}
{% endblock %}
{% load i18n %}
diff --git a/templates/cms/base_site.html b/templates/cms/base_site.html
index 6237ad5..6e51afe 100644
--- a/templates/cms/base_site.html
+++ b/templates/cms/base_site.html
@@ -2,35 +2,37 @@
{% block title %}EDS{% endblock %}
-{% block branding %}
{% endblock %}
+{% block branding %}
+
+{% endblock %}
{% block usertools %}
-
+
{% endblock %}
{% block nav-global %}{% endblock %}
{% block breadcrumbs %}
-
{% endblock %}
diff --git a/templates/cms/competence_list.html b/templates/cms/competence_list.html
index c68f3ba..d852df2 100644
--- a/templates/cms/competence_list.html
+++ b/templates/cms/competence_list.html
@@ -6,17 +6,19 @@
{% block bodyclass %}{{ block.super }}{% endblock %}
{% block content %}
-
-
Liste des compétences du PEC avec les modules correspondants
-
-
-
+
Liste des compétences du PEC avec les modules correspondants
+
+ {% for c in object_list %}
+
+ {{ c }}
+
+
+
+ {{ c.module }}
+
+ {% endfor %}
+
{% endblock %}
diff --git a/templates/cms/document_detail.html b/templates/cms/document_detail.html
index 58e3b34..b516cba 100644
--- a/templates/cms/document_detail.html
+++ b/templates/cms/document_detail.html
@@ -8,14 +8,13 @@
{% block content %}
-
-
-
{{object}}
-
{{object.texte|safe}}
-
-
-
-
+
+
{{object}}
+
{{object.texte|safe}}
+
+
+
+
{% endblock %}
diff --git a/templates/cms/document_list.html b/templates/cms/document_list.html
index caedd5b..bb0599a 100644
--- a/templates/cms/document_list.html
+++ b/templates/cms/document_list.html
@@ -7,15 +7,14 @@
{% block content %}
-
Liste des documents
-
-{% for doc in object_list %}
-{{ doc }}
-{% endfor %}
-
-{% for fic in upload %}
-{{ fic.titre }}
-{% endfor %}
-
+
Liste des documents
+
+ {% for doc in object_list %}
+ {{ doc }}
+ {% endfor %}
+ {% for fic in upload %}
+ {{ fic.titre }}
+ {% endfor %}
+
{% endblock %}
diff --git a/templates/cms/domaine_detail.html b/templates/cms/domaine_detail.html
index 0b62d0b..2d92bb4 100644
--- a/templates/cms/domaine_detail.html
+++ b/templates/cms/domaine_detail.html
@@ -8,18 +8,17 @@
{% block content %}
-
Domaine: {{object}}
-{% for p in object.processus_set.all %}
-
Processus: {{ p.url|safe }}
-{% for m in p.module_set.all %}
-
-
Compétences visées
-{% for c in m.competences.all %}
-
{{ c }}
-{% endfor %}
-{% endfor %}
-{% endfor %}
-
+
Domaine: {{object}}
+ {% for p in object.processus_set.all %}
+
Processus: {{ p.url|safe }}
+ {% for m in p.module_set.all %}
+
+
Compétences visées
+ {% for c in m.competences.all %}
+
{{ c }}
+ {% endfor %}
+ {% endfor %}
+ {% endfor %}
{% endblock %}
diff --git a/templates/cms/domaine_list.html b/templates/cms/domaine_list.html
index 016e07b..6c460f7 100644
--- a/templates/cms/domaine_list.html
+++ b/templates/cms/domaine_list.html
@@ -11,20 +11,27 @@
{% block content %}
-
Liste des domaines
-
-{% for d in object_list %}
-{{d}}
-{% for p in d.processus_set.all %}
- {{p}}
-{% for m in p.module_set.all %}
- {{m}}
-{% endfor %}
-{% endfor %}
-{% endfor %}
-
-
+
Liste des domaines
+
+ {% for d in object_list %}
+
+ {{d}}
+
+ {% for p in d.processus_set.all %}
+
+
+ {{p}}
+
+ {% for m in p.module_set.all %}
+
+
+ {{m}}
+
+ {% endfor %}
+ {% endfor %}
+ {% endfor %}
+
{% endblock %}
diff --git a/templates/cms/evaluation.html b/templates/cms/evaluation.html
index f1e9015..1dc8255 100644
--- a/templates/cms/evaluation.html
+++ b/templates/cms/evaluation.html
@@ -49,66 +49,70 @@
-
Evaluation des compétences
-
-
-
- P01
- P02
- P03
- P04
- P05
- P06
- P07
- P08
-
-
-
- {% for p in object_list %}
-
-
- {{p}}
- {% for c in p.competence_set.all %}
- {{c}} 0
- 1
- 2
- 3
+ Evaluation des compétences
+
+
+
+ P01
+ P02
+ P03
+ P04
+ P05
+ P06
+ P07
+ P08
+
+
+
+ {% for p in object_list %}
+
+
+
+ {{p}}
+
+
+
+
+ {% for c in p.competence_set.all %}
+
+ {{c}}
+
+
+ 0
+ 1
+ 2
+ 3
+
+
+
+ {% endfor %}
+
+
{% endfor %}
-
-
- {% endfor %}
-
-
-
-
-
-
-
+
{% endblock %}
diff --git a/templates/cms/index.html b/templates/cms/index.html
index 29f935f..5d22547 100644
--- a/templates/cms/index.html
+++ b/templates/cms/index.html
@@ -7,99 +7,145 @@
-
Périodes de formation
-
-Semestre 1 {{tot1.sem1__sum}}h. Semestre 2 {{tot2.sem2__sum}}h.
-
-{% for s in sem1 %}
-{{s}} {{s.sem1}} h.
-{% endfor %}
-
-
-
-
-
-{% for s in sem2 %}
-{{s}} {{s.sem2}} h.
-{% endfor %}
-
-
-
-Semestre 3 {{tot3.sem3__sum}}h. Semestre 4 {{tot4.sem4__sum}}h.
-
-{% for s in sem3 %}
-{{s}} {{s.sem3}} h.
-{% endfor %}
-
-
-
-{% for s in sem4 %}
-{{s}} {{s.sem4}} h.
-{% endfor %}
-
-
-Semestre 5 {{tot5.sem5__sum}}h. Semestre 6 {{tot6.sem6__sum}}h.
-
-{% for s in sem5 %}
-{{s}} {{s.sem5}} h.
-{% endfor %}
-
-
-
-
-{% for s in sem6 %}
-{{s}} {{s.sem6}} h.
-{% endfor %}
-
-
-
-
-
-Total des heures de cours: {{tot}} heures
-
-
-
Imprimer en PDF
+
Périodes de formation
+
+
+ Semestre 1
+ {{tot1}}h.
+
+ Semestre 2
+ {{tot2}}h.
+
+
+
+
+ {% for s in sem1 %}
+ {{s}} {{s.sem1}} h.
+ {% endfor %}
+
+
+
+
+
+ {% for s in sem2 %}
+ {{s}} {{s.sem2}} h.
+ {% endfor %}
+
+
+
+
+
+
+
+
+ Semestre 3
+ {{tot3}}h.
+
+ Semestre 4
+ {{tot4}}h.
+
+
+
+
+ {% for s in sem3 %}
+ {{s}} {{s.sem3}} h.
+ {% endfor %}
+
+
+
+
+
+ {% for s in sem4 %}
+
+ {{s}}
+ {{s.sem4}} h.
+
+ {% endfor %}
+
+
+
+
+
+
+
+
+ Semestre 5
+ {{tot5}}h.
+
+ Semestre 6
+ {{tot6}}h.
+
+
+
+
+ {% for s in sem5 %}
+ {{s}} {{s.sem5}} h.
+ {% endfor %}
+
+
+
+
+
+ {% for s in sem6 %}
+
+ {{s}}
+ {{s.sem6}} h.
+
+ {% endfor %}
+
+
+
+
+
+
Total des heures de cours: {{tot}} heures
+
Imprimer en PDF
{% endblock %}
diff --git a/templates/cms/processus_detail.html b/templates/cms/processus_detail.html
index 0d37507..7cefc16 100644
--- a/templates/cms/processus_detail.html
+++ b/templates/cms/processus_detail.html
@@ -1,29 +1,46 @@
{% extends "./base_site.html" %}
{% load i18n static %}
-
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
-
{% block content %}
-
-
Enregistrements de documents
-{% if documents %}
-
- {% else %}
-
No documents.
- {% endif %}
-
-
-
+
+
Enregistrements de documents
+ {% if documents %}
+
+ {% else %}
+
No documents.
+ {% endif %}
+
+
-
+
{% endblock %}
diff --git a/templates/cms/upload_detail.html b/templates/cms/upload_detail.html
index 7812bac..29e91e5 100644
--- a/templates/cms/upload_detail.html
+++ b/templates/cms/upload_detail.html
@@ -3,13 +3,10 @@
{% block coltype %}colMS{% endblock %}
-
-
{% block content %}
-
-
+
{% endblock %}