diff --git a/templates/base.html b/templates/base.html
index 8da159d..4608116 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -7,12 +7,27 @@
{% include 'nav_bar.html' %}
-
+
{% for message in messages %}
{{message}}
@@ -22,7 +37,13 @@
{% endfor %}
{% block content %}{% endblock %}
-
+
+
diff --git a/templates/home.html b/templates/home.html
index d01953c..392ac75 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -1,9 +1,7 @@
{% extends 'base.html'%}
{% block content %}
- {{message|safe}}
{% if not upload_allowed %}
Les envois de contenu ne sont pas autorisés actuellement.
{% endif %}
-
{% endblock %}