diff --git a/templates/admin/change_form.html b/templates/admin/change_form.html
new file mode 100644
index 00000000..0224fdbd
--- /dev/null
+++ b/templates/admin/change_form.html
@@ -0,0 +1,86 @@
+{# Please keep this template in sync with django/contrib/admin one #}
+{% extends "admin/base_site.html" %}
+{% load i18n admin_urls static admin_modify %}
+
+{% block extrahead %}{{ block.super }}
+
+{{ media }}
+{% endblock %}
+
+{% block extrastyle %}{{ block.super }}{% endblock %}
+
+{% block coltype %}colM{% endblock %}
+
+{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-form{% endblock %}
+
+{% if not is_popup %}
+{% block breadcrumbs %}
+
+{% block object-tools %}
+{% if change %}{% if not is_popup %}
+
+{% endif %}{% endif %}
+{% endblock %}
+
+{% endblock %}
diff --git a/templates/admin/includes/fieldset.html b/templates/admin/includes/fieldset.html
new file mode 100644
index 00000000..f7858c61
--- /dev/null
+++ b/templates/admin/includes/fieldset.html
@@ -0,0 +1,27 @@
+{# Please keep this template in sync with django/contrib/admin one #}
+{% load bootstrap3 %}
+
- {% if show_save %}
-
- {% endif %}
-
- {% if show_delete_link %}
- {% url opts|admin_urlname:'delete' original.pk|admin_urlquote as delete_url %}
-
-
- {% trans "Delete" %}
-
- {% endif %}
-
- {% if show_save_as_new %}
-
- {% endif %}
-
- {% if show_save_and_add_another %}
-
- {% endif %}
-
- {% if show_save_and_continue %}
-
- {% endif %}
+
+{% if show_save %}
+
+{% endif %}
+{% if show_delete_link %}
+ {% url opts|admin_urlname:'delete' original.pk|admin_urlquote as delete_url %}
+
+
+ {% trans "Delete" %}
+
+{% endif %}
+{% if show_save_as_new %}
+
+{% endif %}
+{% if show_save_and_add_another %}
+
+{% endif %}
+{% if show_save_and_continue %}
+
+{% endif %}
diff --git a/templates/reversion/change_list.html b/templates/reversion/change_list.html
new file mode 100644
index 00000000..b731f23a
--- /dev/null
+++ b/templates/reversion/change_list.html
@@ -0,0 +1,11 @@
+{# Please keep this template in sync with reversion one #}
+{% extends "admin/change_list.html" %}
+{% load i18n admin_urls %}
+
+
+{% block object-tools-items %}
+ {% if not is_popup and has_add_permission and has_change_permission %}
+
{% blocktrans with cl.opts.verbose_name_plural|escape as name %}Recover deleted {{name}}{% endblocktrans %}
+ {% endif %}
+ {{block.super}}
+{% endblock %}