diff --git a/elections/templates/elections/base.html b/elections/templates/elections/base.html
index a889c22..aa18e37 100644
--- a/elections/templates/elections/base.html
+++ b/elections/templates/elections/base.html
@@ -1,5 +1,6 @@
{% load staticfiles %}
{% load bulma_utils %}
+{% load i18n %}
@@ -18,6 +19,20 @@
{# #}
+
+
+
{% block extra_head %}{% endblock extra_head %}
@@ -35,29 +50,38 @@
{% block layout %}
-
-
-
+
+
+
+
- {% if messages %}
- {% for message in messages %}
-
- {% if 'safe' in message.tags %}
- {{ message|safe }}
- {% else %}
- {{ message }}
+ {% if messages %}
+ {% for message in messages %}
+
+ {% if 'safe' in message.tags %}
+ {{ message|safe }}
+ {% else %}
+ {{ message }}
+ {% endif %}
+
+
+ {% endfor %}
{% endif %}
-
-
- {% endfor %}
- {% endif %}
- {% block content %}
- {% endblock content %}
-
+
+ {% block content %}
+ {% endblock content %}
+
+
+
{% endblock layout %}
+