diff --git a/templates/calendrier/changename.html b/calendrier/templates/calendrier/changename.html
similarity index 92%
rename from templates/calendrier/changename.html
rename to calendrier/templates/calendrier/changename.html
index 7c5af03..b988ccf 100644
--- a/templates/calendrier/changename.html
+++ b/calendrier/templates/calendrier/changename.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Modification du profil{% endblock %}
{% block content %}
diff --git a/templates/calendrier/create.html b/calendrier/templates/calendrier/create.html
similarity index 91%
rename from templates/calendrier/create.html
rename to calendrier/templates/calendrier/create.html
index d9177fd..c915e77 100644
--- a/templates/calendrier/create.html
+++ b/calendrier/templates/calendrier/create.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre%}Création d'Évènement{% endblock %}
diff --git a/templates/calendrier/delete.html b/calendrier/templates/calendrier/delete.html
similarity index 88%
rename from templates/calendrier/delete.html
rename to calendrier/templates/calendrier/delete.html
index 0ab2aa9..c1d6a0b 100644
--- a/templates/calendrier/delete.html
+++ b/calendrier/templates/calendrier/delete.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Suppression d'un événement{% endblock %}
diff --git a/templates/calendrier/home.html b/calendrier/templates/calendrier/home.html
similarity index 97%
rename from templates/calendrier/home.html
rename to calendrier/templates/calendrier/home.html
index 097154c..a4e5b86 100644
--- a/templates/calendrier/home.html
+++ b/calendrier/templates/calendrier/home.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% load staticfiles %}
{% load frenchmonth %}
{% load translate %}
diff --git a/templates/calendrier/reponse.html b/calendrier/templates/calendrier/reponse.html
similarity index 94%
rename from templates/calendrier/reponse.html
rename to calendrier/templates/calendrier/reponse.html
index fc7a784..d52ecb2 100644
--- a/templates/calendrier/reponse.html
+++ b/calendrier/templates/calendrier/reponse.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Participation à un événement{% endblock %}
diff --git a/templates/calendrier/resend.html b/calendrier/templates/calendrier/resend.html
similarity index 90%
rename from templates/calendrier/resend.html
rename to calendrier/templates/calendrier/resend.html
index 946a530..4453625 100644
--- a/templates/calendrier/resend.html
+++ b/calendrier/templates/calendrier/resend.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Renvoyer les mails{% endblock %}
diff --git a/templates/calendrier/update.html b/calendrier/templates/calendrier/update.html
similarity index 85%
rename from templates/calendrier/update.html
rename to calendrier/templates/calendrier/update.html
index 8f4561b..5444ef5 100644
--- a/templates/calendrier/update.html
+++ b/calendrier/templates/calendrier/update.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Modification{% endblock %}
{% block content %}
diff --git a/templates/calendrier/view_event.html b/calendrier/templates/calendrier/view_event.html
similarity index 98%
rename from templates/calendrier/view_event.html
rename to calendrier/templates/calendrier/view_event.html
index 71f0d6a..c4bc5dc 100644
--- a/templates/calendrier/view_event.html
+++ b/calendrier/templates/calendrier/view_event.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}{{ nom }}{% endblock %}
diff --git a/templates/gestion/base.html b/gestion/templates/gestion/base.html
similarity index 100%
rename from templates/gestion/base.html
rename to gestion/templates/gestion/base.html
diff --git a/templates/gestion/change.html b/gestion/templates/gestion/change.html
similarity index 94%
rename from templates/gestion/change.html
rename to gestion/templates/gestion/change.html
index f62a9ff..fbda8ad 100644
--- a/templates/gestion/change.html
+++ b/gestion/templates/gestion/change.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Modification du profil{% endblock %}
{% block content %}
diff --git a/templates/gestion/changepasswd.html b/gestion/templates/gestion/changepasswd.html
similarity index 92%
rename from templates/gestion/changepasswd.html
rename to gestion/templates/gestion/changepasswd.html
index 2177003..ba0bc39 100644
--- a/templates/gestion/changepasswd.html
+++ b/gestion/templates/gestion/changepasswd.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Changement du mot de passe{% endblock %}
{% block content %}
diff --git a/templates/gestion/divers.html b/gestion/templates/gestion/divers.html
similarity index 87%
rename from templates/gestion/divers.html
rename to gestion/templates/gestion/divers.html
index a2e08a3..0b1bac0 100644
--- a/templates/gestion/divers.html
+++ b/gestion/templates/gestion/divers.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Divers{% endblock %}
{% block content %}
Divers
diff --git a/templates/gestion/home.html b/gestion/templates/gestion/home.html
similarity index 81%
rename from templates/gestion/home.html
rename to gestion/templates/gestion/home.html
index 84f7367..199e25a 100644
--- a/templates/gestion/home.html
+++ b/gestion/templates/gestion/home.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}L'Ernestophone{% endblock %}
{% block content %}L'Ernestophone, la fanfare de l'École normale supérieure
{% endblock %}
diff --git a/templates/gestion/login.html b/gestion/templates/gestion/login.html
similarity index 95%
rename from templates/gestion/login.html
rename to gestion/templates/gestion/login.html
index 9bde3e0..a2e8eba 100644
--- a/templates/gestion/login.html
+++ b/gestion/templates/gestion/login.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Connexion{% endblock %}
{% block content %}
Connexion
diff --git a/templates/gestion/registration.html b/gestion/templates/gestion/registration.html
similarity index 93%
rename from templates/gestion/registration.html
rename to gestion/templates/gestion/registration.html
index ae6ed3c..2207496 100644
--- a/templates/gestion/registration.html
+++ b/gestion/templates/gestion/registration.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}L'Ernestophone - Inscription{% endblock %}
{% block content %}
diff --git a/templates/gestion/thanks.html b/gestion/templates/gestion/thanks.html
similarity index 83%
rename from templates/gestion/thanks.html
rename to gestion/templates/gestion/thanks.html
index b1ccb60..0858714 100644
--- a/templates/gestion/thanks.html
+++ b/gestion/templates/gestion/thanks.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}L'Ernestophone - Inscription{% endblock %}
{% block content %} Merci pour votre inscription.
{% if error %}{{ error }}
{% endif %}
diff --git a/gestion/views.py b/gestion/views.py
index 3acdcfe..261ddd4 100644
--- a/gestion/views.py
+++ b/gestion/views.py
@@ -90,7 +90,7 @@ def login(request):
{"error_type": "no_password"})
except User.DoesNotExist:
pass
- return django_login_view(request, template_name='login.html')
+ return django_login_view(request, template_name='gestion/login.html')
@login_required
diff --git a/templates/pads/create.html b/pads/templates/pads/create.html
similarity index 91%
rename from templates/pads/create.html
rename to pads/templates/pads/create.html
index ecf2261..06b5914 100644
--- a/templates/pads/create.html
+++ b/pads/templates/pads/create.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{%block titre %}Ajout d'un pad{% endblock %}
diff --git a/templates/pads/delete.html b/pads/templates/pads/delete.html
similarity index 90%
rename from templates/pads/delete.html
rename to pads/templates/pads/delete.html
index aaf47d8..f11fd3b 100644
--- a/templates/pads/delete.html
+++ b/pads/templates/pads/delete.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "gestion/base.html" %}
{% block titre %}Suppression d'un pad{% endblock %}
{% block content %}{% csrf_token %}
-
-
-
-
-
-{% endif %}
-{% endblock %}
diff --git a/templates/admin/delete_selected_confirmation.html b/templates/admin/delete_selected_confirmation.html
deleted file mode 100644
index 79ea977..0000000
--- a/templates/admin/delete_selected_confirmation.html
+++ /dev/null
@@ -1,49 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n l10n admin_urls %}
-
-{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation delete-selected-confirmation{% endblock %}
-
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block content %}
-{% if perms_lacking or protected %}
- {% if perms_lacking %}
- {% blocktrans %}Deleting the selected {{ objects_name }} would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktrans %}
-
- {% for obj in perms_lacking %}
- {{ obj }}
- {% endfor %}
-
- {% endif %}
- {% if protected %}
- {% blocktrans %}Deleting the selected {{ objects_name }} would require deleting the following protected related objects:{% endblocktrans %}
-
- {% for obj in protected %}
- {{ obj }}
- {% endfor %}
-
- {% endif %}
-{% else %}
- {% blocktrans %}Are you sure you want to delete the selected {{ objects_name }}? All of the following objects and their related items will be deleted:{% endblocktrans %}
- {% for deletable_object in deletable_objects %}
- {{ deletable_object|unordered_list }}
- {% endfor %}
- {% csrf_token %}
-
- {% for obj in queryset %}
-
- {% endfor %}
-
-
-
-
-
-{% endif %}
-{% endblock %}
diff --git a/templates/admin/edit_inline/stacked.html b/templates/admin/edit_inline/stacked.html
deleted file mode 100644
index 79c052c..0000000
--- a/templates/admin/edit_inline/stacked.html
+++ /dev/null
@@ -1,30 +0,0 @@
-{% load i18n admin_static %}
-
-
-
diff --git a/templates/admin/edit_inline/tabular.html b/templates/admin/edit_inline/tabular.html
deleted file mode 100644
index 9ef6e8f..0000000
--- a/templates/admin/edit_inline/tabular.html
+++ /dev/null
@@ -1,81 +0,0 @@
-{% load i18n admin_static admin_modify %}{% load cycle from future %}
-
-
-
diff --git a/templates/admin/filter.html b/templates/admin/filter.html
deleted file mode 100644
index d4a61a1..0000000
--- a/templates/admin/filter.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{% load i18n %}
-{% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktrans %}
-
diff --git a/templates/admin/includes/fieldset.html b/templates/admin/includes/fieldset.html
deleted file mode 100644
index c45e731..0000000
--- a/templates/admin/includes/fieldset.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
- {% if fieldset.name %}{{ fieldset.name }} {% endif %}
- {% if fieldset.description %}
- {{ fieldset.description|safe }}
- {% endif %}
- {% for line in fieldset %}
-
- {% endfor %}
-
diff --git a/templates/admin/index.html b/templates/admin/index.html
deleted file mode 100644
index fcf269e..0000000
--- a/templates/admin/index.html
+++ /dev/null
@@ -1,82 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n admin_static %}
-
-{% block extrastyle %}{{ block.super }} {% endblock %}
-
-{% block coltype %}colMS{% endblock %}
-
-{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
-
-{% block breadcrumbs %}{% endblock %}
-
-{% block content %}
-
-
-{% if app_list %}
- {% for app in app_list %}
-
- {% endfor %}
-{% else %}
-
{% trans "You don't have permission to edit anything." %}
-{% endif %}
-
-{% endblock %}
-
-{% block sidebar %}
-
-
-
{% trans 'Recent Actions' %}
-
{% trans 'My Actions' %}
- {% load log %}
- {% get_admin_log 10 as admin_log for_user user %}
- {% if not admin_log %}
-
{% trans 'None available' %}
- {% else %}
-
- {% for entry in admin_log %}
-
- {% if entry.is_deletion or not entry.get_admin_url %}
- {{ entry.object_repr }}
- {% else %}
- {{ entry.object_repr }}
- {% endif %}
-
- {% if entry.content_type %}
- {% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}
- {% else %}
- {% trans 'Unknown content' %}
- {% endif %}
-
- {% endfor %}
-
- {% endif %}
-
-
-{% endblock %}
diff --git a/templates/admin/invalid_setup.html b/templates/admin/invalid_setup.html
deleted file mode 100644
index 7c71107..0000000
--- a/templates/admin/invalid_setup.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block content %}
-{% trans "Something's wrong with your database installation. Make sure the appropriate database tables have been created, and make sure the database is readable by the appropriate user." %}
-{% endblock %}
diff --git a/templates/admin/login.html b/templates/admin/login.html
deleted file mode 100644
index bf1b3f9..0000000
--- a/templates/admin/login.html
+++ /dev/null
@@ -1,55 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n admin_static %}
-
-{% block extrastyle %}{{ block.super }} {% endblock %}
-
-{% block bodyclass %}{{ block.super }} login{% endblock %}
-
-{% block nav-global %}{% endblock %}
-
-{% block content_title %}{% endblock %}
-
-{% block breadcrumbs %}{% endblock %}
-
-{% block content %}
-{% if form.errors and not form.non_field_errors %}
-
-{% if form.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %}
-
-{% endif %}
-
-{% if form.non_field_errors %}
-{% for error in form.non_field_errors %}
-
- {{ error }}
-
-{% endfor %}
-{% endif %}
-
-
-
{% csrf_token %}
-
- {{ form.username.errors }}
- {{ form.username.label }}: {{ form.username }}
-
-
- {{ form.password.errors }}
- {% trans 'Password:' %} {{ form.password }}
-
-
- {% url 'admin_password_reset' as password_reset_url %}
- {% if password_reset_url %}
-
- {% endif %}
-
-
-
-
-
-
-
-{% endblock %}
diff --git a/templates/admin/object_history.html b/templates/admin/object_history.html
deleted file mode 100644
index cf3e7e2..0000000
--- a/templates/admin/object_history.html
+++ /dev/null
@@ -1,42 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n admin_urls %}
-
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block content %}
-
-
-
-{% if action_list %}
-
-
-
- {% trans 'Date/time' %}
- {% trans 'User' %}
- {% trans 'Action' %}
-
-
-
- {% for action in action_list %}
-
- {{ action.action_time|date:"DATETIME_FORMAT" }}
- {{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %}
- {{ action.change_message }}
-
- {% endfor %}
-
-
-{% else %}
-
{% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}
-{% endif %}
-
-
-{% endblock %}
diff --git a/templates/admin/pagination.html b/templates/admin/pagination.html
deleted file mode 100644
index 3588132..0000000
--- a/templates/admin/pagination.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% load admin_list %}
-{% load i18n %}
-
-{% if pagination_required %}
-{% for i in page_range %}
- {% paginator_number cl i %}
-{% endfor %}
-{% endif %}
-{{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %}
-{% if show_all_url %} {% trans 'Show all' %} {% endif %}
-{% if cl.formset and cl.result_count %} {% endif %}
-
diff --git a/templates/admin/popup_response.html b/templates/admin/popup_response.html
deleted file mode 100644
index 281f035..0000000
--- a/templates/admin/popup_response.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
diff --git a/templates/admin/prepopulated_fields_js.html b/templates/admin/prepopulated_fields_js.html
deleted file mode 100644
index 0ff4d27..0000000
--- a/templates/admin/prepopulated_fields_js.html
+++ /dev/null
@@ -1,27 +0,0 @@
-{% load l10n %}
-
diff --git a/templates/admin/search_form.html b/templates/admin/search_form.html
deleted file mode 100644
index c9b626d..0000000
--- a/templates/admin/search_form.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% load i18n admin_static %}
-{% if cl.search_fields %}
-
-
-{% endif %}
diff --git a/templates/admin/submit_line.html b/templates/admin/submit_line.html
deleted file mode 100644
index 52baed3..0000000
--- a/templates/admin/submit_line.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{% load i18n admin_urls %}
-
diff --git a/templates/registration/logged_out.html b/templates/registration/logged_out.html
deleted file mode 100644
index 6a18186..0000000
--- a/templates/registration/logged_out.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block breadcrumbs %}{% endblock %}
-
-{% block content %}
-
-{% trans "Thanks for spending some quality time with the Web site today." %}
-
-{% trans 'Log in again' %}
-
-{% endblock %}
diff --git a/templates/registration/password_change_done.html b/templates/registration/password_change_done.html
deleted file mode 100644
index 3e557eb..0000000
--- a/templates/registration/password_change_done.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-{% block userlinks %}{% url 'django-admindocs-docroot' as docsroot %}{% if docsroot %}{% trans 'Documentation' %} / {% endif %}{% trans 'Change password' %} / {% trans 'Log out' %} {% endblock %}
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block title %}{{ title }}{% endblock %}
-{% block content_title %}{{ title }} {% endblock %}
-{% block content %}
-{% trans 'Your password was changed.' %}
-{% endblock %}
diff --git a/templates/registration/password_change_form.html b/templates/registration/password_change_form.html
deleted file mode 100644
index 7b3ae6f..0000000
--- a/templates/registration/password_change_form.html
+++ /dev/null
@@ -1,55 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n admin_static %}
-{% block extrastyle %}{{ block.super }} {% endblock %}
-{% block userlinks %}{% url 'django-admindocs-docroot' as docsroot %}{% if docsroot %}{% trans 'Documentation' %} / {% endif %} {% trans 'Change password' %} / {% trans 'Log out' %} {% endblock %}
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block title %}{{ title }}{% endblock %}
-{% block content_title %}{{ title }} {% endblock %}
-
-{% block content %}
-
-
{% csrf_token %}
-
-{% if form.errors %}
-
- {% if form.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %}
-
-{% endif %}
-
-
-
{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}
-
-
-
-
- {{ form.old_password.errors }}
- {% trans 'Old password' %}: {{ form.old_password }}
-
-
-
- {{ form.new_password1.errors }}
- {% trans 'New password' %}: {{ form.new_password1 }}
-
-
-
-{{ form.new_password2.errors }}
- {% trans 'Password (again)' %}: {{ form.new_password2 }}
-
-
-
-
-
-
-
-
-
-
-
-
-{% endblock %}
diff --git a/templates/registration/password_reset_complete.html b/templates/registration/password_reset_complete.html
deleted file mode 100644
index 19f87a5..0000000
--- a/templates/registration/password_reset_complete.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block title %}{{ title }}{% endblock %}
-{% block content_title %}{{ title }} {% endblock %}
-
-{% block content %}
-
-{% trans "Your password has been set. You may go ahead and log in now." %}
-
-{% trans 'Log in' %}
-
-{% endblock %}
diff --git a/templates/registration/password_reset_confirm.html b/templates/registration/password_reset_confirm.html
deleted file mode 100644
index bd24806..0000000
--- a/templates/registration/password_reset_confirm.html
+++ /dev/null
@@ -1,33 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block title %}{{ title }}{% endblock %}
-{% block content_title %}{{ title }} {% endblock %}
-{% block content %}
-
-{% if validlink %}
-
-{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}
-
-{% csrf_token %}
-{{ form.new_password1.errors }}
-{% trans 'New password:' %} {{ form.new_password1 }}
-{{ form.new_password2.errors }}
-{% trans 'Confirm password:' %} {{ form.new_password2 }}
-
-
-
-{% else %}
-
-{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}
-
-{% endif %}
-
-{% endblock %}
diff --git a/templates/registration/password_reset_done.html b/templates/registration/password_reset_done.html
deleted file mode 100644
index d157306..0000000
--- a/templates/registration/password_reset_done.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block title %}{{ title }}{% endblock %}
-{% block content_title %}{{ title }} {% endblock %}
-{% block content %}
-
-{% trans "We've emailed you instructions for setting your password. You should be receiving them shortly." %}
-
-{% trans "If you don't receive an email, please make sure you've entered the address you registered with, and check your spam folder." %}
-
-{% endblock %}
diff --git a/templates/registration/password_reset_email.html b/templates/registration/password_reset_email.html
deleted file mode 100644
index 01b3bcc..0000000
--- a/templates/registration/password_reset_email.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{% load i18n %}{% autoescape off %}
-{% blocktrans %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
-
-{% trans "Please go to the following page and choose a new password:" %}
-{% block reset_link %}
-{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
-{% endblock %}
-{% trans "Your username, in case you've forgotten:" %} {{ user.get_username }}
-
-{% trans "Thanks for using our site!" %}
-
-{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
-
-{% endautoescape %}
diff --git a/templates/registration/password_reset_form.html b/templates/registration/password_reset_form.html
deleted file mode 100644
index dc05cd0..0000000
--- a/templates/registration/password_reset_form.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block breadcrumbs %}
-
-{% endblock %}
-
-{% block title %}{{ title }}{% endblock %}
-{% block content_title %}{{ title }} {% endblock %}
-{% block content %}
-
-{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}
-
-{% csrf_token %}
-{{ form.email.errors }}
-{% trans 'Email address:' %} {{ form.email }}
-
-
-{% endblock %}