diff --git a/elections/templates/elections/admin/option.html b/elections/templates/elections/admin/option.html
new file mode 100644
index 0000000..fc5a6e3
--- /dev/null
+++ b/elections/templates/elections/admin/option.html
@@ -0,0 +1,40 @@
+{% load i18n markdown %}
+
+
+
+
+
+
+
+
+
+
+ {{ q }}
+
+
+
+ {% if q.election.start_date > current_time %}
+
+ {% endif %}
+
+
+
+ {{ q.get_type_display }}
+
+
+
+
+ {# Liste des options possibles #}
+
+ {% for o in q.options.all %}
+ {% include 'elections/admin/option.html' %}
+ {% endfor %}
+
+
+ {# Permet d'afficher une ligne #}
+
+
+ {# Affiche plus d'informations sur le résultat #}
+ {% if q.election.tallied %}
+ {{ q.get_results_data }}
+ {% endif %}
+
+ {# Rajout d'une option #}
+ {% if q.election.start_date > current_time %}
+
+
+
+ {% endif %}
+
diff --git a/elections/templates/elections/election_admin.html b/elections/templates/elections/election_admin.html
index fecb9fc..59a0065 100644
--- a/elections/templates/elections/election_admin.html
+++ b/elections/templates/elections/election_admin.html
@@ -2,21 +2,69 @@
{% load i18n markdown %}
-{% block extra_head %}
+{% block custom_js %}
+
{% block extra_head %}{% endblock extra_head %}
diff --git a/shared/templates/forms/modal-form.html b/shared/templates/forms/modal-form.html
index f36a564..50dc23d 100644
--- a/shared/templates/forms/modal-form.html
+++ b/shared/templates/forms/modal-form.html
@@ -1,14 +1,14 @@
{% load i18n %}