diff --git a/templates/bda/bda-attrib.html b/templates/bda/bda-attrib.html
index 382048c4..54cdc2b7 100644
--- a/templates/bda/bda-attrib.html
+++ b/templates/bda/bda-attrib.html
@@ -1,7 +1,8 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/bda/bda-revente.html b/templates/bda/bda-revente.html
index e2a4804b..bc7542fc 100644
--- a/templates/bda/bda-revente.html
+++ b/templates/bda/bda-revente.html
@@ -1,7 +1,8 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/bda/bda-success.html b/templates/bda/bda-success.html
index 004503fe..f7bbe349 100644
--- a/templates/bda/bda-success.html
+++ b/templates/bda/bda-success.html
@@ -1,7 +1,8 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/bda2/bda-attrib.html b/templates/bda2/bda-attrib.html
index 2cc20a29..cd91a478 100644
--- a/templates/bda2/bda-attrib.html
+++ b/templates/bda2/bda-attrib.html
@@ -1,7 +1,8 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/bda2/bda-revente.html b/templates/bda2/bda-revente.html
index e2a4804b..bc7542fc 100644
--- a/templates/bda2/bda-revente.html
+++ b/templates/bda2/bda-revente.html
@@ -1,7 +1,8 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/bda2/bda-success.html b/templates/bda2/bda-success.html
index 004503fe..f7bbe349 100644
--- a/templates/bda2/bda-success.html
+++ b/templates/bda2/bda-success.html
@@ -1,7 +1,8 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/gestioncof/base.html b/templates/gestioncof/base.html
index 862830e4..7834cfce 100644
--- a/templates/gestioncof/base.html
+++ b/templates/gestioncof/base.html
@@ -1,8 +1,10 @@
+{% load staticfiles %}
+
{{ site.name }}
-
+
{% block extra_head %}{% endblock %}
diff --git a/templates/gestioncof/details_demande_petit_cours.html b/templates/gestioncof/details_demande_petit_cours.html
index b30e3187..c12e5c53 100644
--- a/templates/gestioncof/details_demande_petit_cours.html
+++ b/templates/gestioncof/details_demande_petit_cours.html
@@ -1,3 +1,4 @@
+{% load staticfiles %}
{% extends "base_title_petitscours.html" %}
{% block realcontent %}
@@ -5,7 +6,7 @@
{% include "details_demande_petit_cours_infos.html" %}
- - Traitée:
+ - Traitée:
{% if demande.traitee %}
- Traitée par: {{ demande.traitee_par }}
- Traitée le: {{ demande.processed }}
diff --git a/templates/gestioncof/details_demande_petit_cours_infos.html b/templates/gestioncof/details_demande_petit_cours_infos.html
index 90a62f8b..1a4a654c 100644
--- a/templates/gestioncof/details_demande_petit_cours_infos.html
+++ b/templates/gestioncof/details_demande_petit_cours_infos.html
@@ -1,3 +1,4 @@
+{% load staticfiles %}
- Date: {{ demande.created }}
- Nom/prénom: {{ demande.name }}
@@ -8,6 +9,6 @@
- Fréquence: {{ demande.freq }}
- Matières: {% for matiere in demande.matieres.all %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %}
- Niveau souhaité: {{ demande.get_niveau_display }}
- - Agrégé requis:
+ - Agrégé requis:
- Remarques: {{ demande.remarques }}
diff --git a/templates/gestioncof/inscription-petit-cours.html b/templates/gestioncof/inscription-petit-cours.html
index a084e1cc..84ef9618 100644
--- a/templates/gestioncof/inscription-petit-cours.html
+++ b/templates/gestioncof/inscription-petit-cours.html
@@ -1,11 +1,12 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
-
-
-
-
+
+
+
+
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/gestioncof/petits_cours_demandes_list.html b/templates/gestioncof/petits_cours_demandes_list.html
index 8674f4aa..d2a26d79 100644
--- a/templates/gestioncof/petits_cours_demandes_list.html
+++ b/templates/gestioncof/petits_cours_demandes_list.html
@@ -1,3 +1,4 @@
+{% load staticfiles %}
{% extends "base_title_petitscours.html" %}
{% block realcontent %}
@@ -18,8 +19,8 @@
{{ demande.name }} |
{% for matiere in demande.matieres.all %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %} |
{{ demande.created|date:"d E Y" }} |
- |
- {% if demande.traitee_par %}{{ demande.traitee_par.username }}{% else %}{% endif %} |
+ |
+ {% if demande.traitee_par %}{{ demande.traitee_par.username }}{% else %}{% endif %} |
Détails |
{% endfor %}
diff --git a/templates/gestioncof/registration.html b/templates/gestioncof/registration.html
index 83aba51b..3ce928e8 100644
--- a/templates/gestioncof/registration.html
+++ b/templates/gestioncof/registration.html
@@ -1,8 +1,9 @@
+{% load staticfiles %}
{% extends "base_title.html" %}
{% block extra_head %}
-
-
+
+
{% endblock %}
{% block realcontent %}
diff --git a/templates/gestioncof/traitement_demande_petit_cours_autre_niveau.html b/templates/gestioncof/traitement_demande_petit_cours_autre_niveau.html
index 5b7967ab..1ad9051b 100644
--- a/templates/gestioncof/traitement_demande_petit_cours_autre_niveau.html
+++ b/templates/gestioncof/traitement_demande_petit_cours_autre_niveau.html
@@ -1,3 +1,4 @@
+{% load staticfiles %}
{% extends "base_title_petitscours.html" %}
{% block realcontent %}
@@ -15,7 +16,7 @@
{% endif %}
-
+
{% if proposals %}