diff --git a/budget/forms.py b/budget/forms.py
index 7cdb36d4..69679837 100644
--- a/budget/forms.py
+++ b/budget/forms.py
@@ -172,12 +172,6 @@ class InviteForm(FlaskForm):
email=email))
-class CreateArchiveForm(FlaskForm):
- name = TextField(_("Name for this archive (optional)"), validators=[])
- start_date = DateField(_("Start date"), validators=[Required()])
- end_date = DateField(_("End date"), validators=[Required()], default=datetime.now)
-
-
class ExportForm(FlaskForm):
export_type = SelectField(_("What do you want to download ?"),
validators=[Required()],
diff --git a/budget/messages.pot b/budget/messages.pot
index 3c1276b5..0b1759b3 100644
--- a/budget/messages.pot
+++ b/budget/messages.pot
@@ -126,10 +126,6 @@ msgstr ""
msgid "The email %(email)s is not valid"
msgstr ""
-#: forms.py:190
-msgid "Name for this archive (optional)"
-msgstr ""
-
#: forms.py:191
msgid "Start date"
msgstr ""
@@ -201,10 +197,6 @@ msgstr ""
msgid "The bill has been modified"
msgstr ""
-#: web.py:399
-msgid "The data from XX to XX has been archived"
-msgstr ""
-
#: templates/add_bill.html:9
msgid "Back to the list"
msgstr ""
@@ -292,14 +284,6 @@ msgstr ""
msgid "No, thanks"
msgstr ""
-#: templates/forms.html:109
-msgid "Create an archive"
-msgstr ""
-
-#: templates/forms.html:116
-msgid "Create the archive"
-msgstr ""
-
#: templates/home.html:8
msgid "Manage your shared
expenses, easily"
msgstr ""
diff --git a/budget/templates/create_archive.html b/budget/templates/create_archive.html
deleted file mode 100644
index dd7ab860..00000000
--- a/budget/templates/create_archive.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{% extends "layout.html" %}
-
-{% block content %}
-
-{% endblock %}
diff --git a/budget/templates/forms.html b/budget/templates/forms.html
index b4fa236e..01e54867 100644
--- a/budget/templates/forms.html
+++ b/budget/templates/forms.html
@@ -137,19 +137,6 @@
{% endmacro %}
-{% macro create_archive(form) %}
-
-
-
-
-{% endmacro %}
-
{% macro export_project(form) %}