diff options
Diffstat (limited to 'parts/django/tests/templates/custom_admin')
11 files changed, 0 insertions, 42 deletions
diff --git a/parts/django/tests/templates/custom_admin/add_form.html b/parts/django/tests/templates/custom_admin/add_form.html deleted file mode 100644 index f42ba4b..0000000 --- a/parts/django/tests/templates/custom_admin/add_form.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "admin/change_form.html" %} diff --git a/parts/django/tests/templates/custom_admin/change_form.html b/parts/django/tests/templates/custom_admin/change_form.html deleted file mode 100644 index f42ba4b..0000000 --- a/parts/django/tests/templates/custom_admin/change_form.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "admin/change_form.html" %} diff --git a/parts/django/tests/templates/custom_admin/change_list.html b/parts/django/tests/templates/custom_admin/change_list.html deleted file mode 100644 index eebc9c7..0000000 --- a/parts/django/tests/templates/custom_admin/change_list.html +++ /dev/null @@ -1,7 +0,0 @@ -{% extends "admin/change_list.html" %} - -{% block extrahead %} -<script type="text/javascript"> -var hello = '{{ extra_var }}'; -</script> -{% endblock %} diff --git a/parts/django/tests/templates/custom_admin/delete_confirmation.html b/parts/django/tests/templates/custom_admin/delete_confirmation.html deleted file mode 100644 index 9353c5b..0000000 --- a/parts/django/tests/templates/custom_admin/delete_confirmation.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "admin/delete_confirmation.html" %} diff --git a/parts/django/tests/templates/custom_admin/delete_selected_confirmation.html b/parts/django/tests/templates/custom_admin/delete_selected_confirmation.html deleted file mode 100644 index 9268536..0000000 --- a/parts/django/tests/templates/custom_admin/delete_selected_confirmation.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "admin/delete_selected_confirmation.html" %} diff --git a/parts/django/tests/templates/custom_admin/index.html b/parts/django/tests/templates/custom_admin/index.html deleted file mode 100644 index 75b6ca3..0000000 --- a/parts/django/tests/templates/custom_admin/index.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "admin/index.html" %} - -{% block content %} -Hello from a custom index template {{ foo }} -{{ block.super }} -{% endblock %} diff --git a/parts/django/tests/templates/custom_admin/login.html b/parts/django/tests/templates/custom_admin/login.html deleted file mode 100644 index e10a269..0000000 --- a/parts/django/tests/templates/custom_admin/login.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "admin/login.html" %} - -{% block content %} -Hello from a custom login template -{{ block.super }} -{% endblock %} diff --git a/parts/django/tests/templates/custom_admin/logout.html b/parts/django/tests/templates/custom_admin/logout.html deleted file mode 100644 index 3a9301b..0000000 --- a/parts/django/tests/templates/custom_admin/logout.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "registration/logged_out.html" %} - -{% block content %} -Hello from a custom logout template -{{ block.super }} -{% endblock %} diff --git a/parts/django/tests/templates/custom_admin/object_history.html b/parts/django/tests/templates/custom_admin/object_history.html deleted file mode 100644 index aee3b5b..0000000 --- a/parts/django/tests/templates/custom_admin/object_history.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "admin/object_history.html" %} diff --git a/parts/django/tests/templates/custom_admin/password_change_done.html b/parts/django/tests/templates/custom_admin/password_change_done.html deleted file mode 100644 index 0e4a7f2..0000000 --- a/parts/django/tests/templates/custom_admin/password_change_done.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "registration/password_change_done.html" %} - -{% block content %} -Hello from a custom password change done template -{{ block.super }} -{% endblock %} diff --git a/parts/django/tests/templates/custom_admin/password_change_form.html b/parts/django/tests/templates/custom_admin/password_change_form.html deleted file mode 100644 index 1c42493..0000000 --- a/parts/django/tests/templates/custom_admin/password_change_form.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "registration/password_change_form.html" %} - -{% block content %} -Hello from a custom password change form template -{{ block.super }} -{% endblock %} |