diff --git a/kadenios/settings_base.py b/kadenios/settings_base.py
index aca9dab..9e60711 100644
--- a/kadenios/settings_base.py
+++ b/kadenios/settings_base.py
@@ -52,7 +52,7 @@ ROOT_URLCONF = "kadenios.urls"
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
- "DIRS": [],
+ "DIRS": [BASE_DIR + "/shared/templates"],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
diff --git a/elections/templates/elections/base.html b/shared/templates/base.html
similarity index 100%
rename from elections/templates/elections/base.html
rename to shared/templates/base.html
diff --git a/elections/templates/elections/forms/checkbox.html b/shared/templates/forms/checkbox.html
similarity index 100%
rename from elections/templates/elections/forms/checkbox.html
rename to shared/templates/forms/checkbox.html
diff --git a/shared/templates/forms/field.html b/shared/templates/forms/field.html
new file mode 100644
index 0000000..8c5ad14
--- /dev/null
+++ b/shared/templates/forms/field.html
@@ -0,0 +1,33 @@
+{% load bulma_utils %}
+
+
+ {% if field|is_checkbox %}
+
+ {% include "forms/checkbox.html" %}
+
+ {% elif field|is_radio %}
+
+ {% include "forms/radio.html" %}
+
+ {% elif field|is_input %}
+
+ {% include "forms/input.html" %}
+
+ {% elif field|is_textarea %}
+
+ {% include "forms/textarea.html" %}
+
+ {% elif field|is_select %}
+
+ {% include "forms/select.html" %}
+
+ {% elif field|is_file %}
+
+ {% include "forms/file.html" %}
+
+ {% else %}
+
+ {% include "forms/other.html" %}
+
+ {% endif %}
+
diff --git a/elections/templates/elections/forms/file.html b/shared/templates/forms/file.html
similarity index 94%
rename from elections/templates/elections/forms/file.html
rename to shared/templates/forms/file.html
index 1bfd7bd..fbabfd5 100644
--- a/elections/templates/elections/forms/file.html
+++ b/shared/templates/forms/file.html
@@ -10,7 +10,7 @@
{{ field|bulmafy:'file-input' }}
-
+
{% trans "Choisissez un fichier..." %}
diff --git a/elections/templates/elections/forms/form.html b/shared/templates/forms/form.html
similarity index 91%
rename from elections/templates/elections/forms/form.html
rename to shared/templates/forms/form.html
index e8e3141..cc312aa 100644
--- a/elections/templates/elections/forms/form.html
+++ b/shared/templates/forms/form.html
@@ -18,5 +18,5 @@
{% endfor %}
{% for field in form.visible_fields %}
-{% include 'elections/forms/field.html' %}
+{% include 'forms/field.html' %}
{% endfor %}
diff --git a/elections/templates/elections/forms/formset.html b/shared/templates/forms/formset.html
similarity index 62%
rename from elections/templates/elections/forms/formset.html
rename to shared/templates/forms/formset.html
index 0c7c2b3..79b261c 100644
--- a/elections/templates/elections/forms/formset.html
+++ b/shared/templates/forms/formset.html
@@ -1,4 +1,4 @@
{{ formset.management_form }}
{% for form in formset %}
-{% include "elections/forms/form.html" %}
+{% include 'forms/form.html' %}
{% endfor %}
diff --git a/elections/templates/elections/forms/input.html b/shared/templates/forms/input.html
similarity index 100%
rename from elections/templates/elections/forms/input.html
rename to shared/templates/forms/input.html
diff --git a/elections/templates/elections/forms/other.html b/shared/templates/forms/other.html
similarity index 100%
rename from elections/templates/elections/forms/other.html
rename to shared/templates/forms/other.html
diff --git a/elections/templates/elections/forms/radio.html b/shared/templates/forms/radio.html
similarity index 100%
rename from elections/templates/elections/forms/radio.html
rename to shared/templates/forms/radio.html
diff --git a/elections/templates/elections/forms/select.html b/shared/templates/forms/select.html
similarity index 100%
rename from elections/templates/elections/forms/select.html
rename to shared/templates/forms/select.html
diff --git a/elections/templates/elections/forms/textarea.html b/shared/templates/forms/textarea.html
similarity index 100%
rename from elections/templates/elections/forms/textarea.html
rename to shared/templates/forms/textarea.html