diff --git a/idhub/templates/idhub/admin/import_add.html b/idhub/templates/idhub/admin/import_add.html
new file mode 100644
index 0000000..f18821f
--- /dev/null
+++ b/idhub/templates/idhub/admin/import_add.html
@@ -0,0 +1,34 @@
+{% extends "idhub/base_admin.html" %}
+{% load i18n %}
+
+{% block content %}
+
+
+ {{ subtitle }}
+
+
+
+
+
+
+
+ |
+ |
+ |
+ |
+
+
+
+ {% for schema in schemas.all %}
+
+ {{ schema.created_at }} |
+ {{ schema.file_schema }} |
+ {% trans 'Import Dates' %} |
+
+ {% endfor %}
+
+
+
+
+
+{% endblock %}
diff --git a/trustchain_idhub/settings.py b/trustchain_idhub/settings.py
index 93ad79b..2537456 100644
--- a/trustchain_idhub/settings.py
+++ b/trustchain_idhub/settings.py
@@ -178,4 +178,8 @@ MESSAGE_TAGS = {
messages.ERROR: 'alert-danger',
}
+LOCALE_PATHS = [
+ os.path.join(BASE_DIR, 'locale'),
+]
+
AUTH_USER_MODEL = 'idhub_auth.User'