diff options
Diffstat (limited to 'parts/django/tests/templates')
26 files changed, 0 insertions, 104 deletions
diff --git a/parts/django/tests/templates/404.html b/parts/django/tests/templates/404.html deleted file mode 100644 index da627e2..0000000 --- a/parts/django/tests/templates/404.html +++ /dev/null @@ -1 +0,0 @@ -Django Internal Tests: 404 Error
\ No newline at end of file diff --git a/parts/django/tests/templates/500.html b/parts/django/tests/templates/500.html deleted file mode 100644 index ff028cb..0000000 --- a/parts/django/tests/templates/500.html +++ /dev/null @@ -1 +0,0 @@ -Django Internal Tests: 500 Error
\ No newline at end of file diff --git a/parts/django/tests/templates/base.html b/parts/django/tests/templates/base.html deleted file mode 100644 index 611bc09..0000000 --- a/parts/django/tests/templates/base.html +++ /dev/null @@ -1,8 +0,0 @@ -<html> -<head></head> -<body> -<h1>Django Internal Tests: {% block title %}{% endblock %}</h1> -{% block content %} -{% endblock %} -</body> -</html>
\ No newline at end of file diff --git a/parts/django/tests/templates/comments/comment_notification_email.txt b/parts/django/tests/templates/comments/comment_notification_email.txt deleted file mode 100644 index 63f1493..0000000 --- a/parts/django/tests/templates/comments/comment_notification_email.txt +++ /dev/null @@ -1,3 +0,0 @@ -A comment has been posted on {{ content_object }}. -The comment reads as follows: -{{ comment }} 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 %} diff --git a/parts/django/tests/templates/extended.html b/parts/django/tests/templates/extended.html deleted file mode 100644 index e0d8a13..0000000 --- a/parts/django/tests/templates/extended.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "base.html" %} -{% block title %}Extended template{% endblock %} -{% block content %} -This is just a template extending the base. -{% endblock %}
\ No newline at end of file diff --git a/parts/django/tests/templates/form_view.html b/parts/django/tests/templates/form_view.html deleted file mode 100644 index 1487217..0000000 --- a/parts/django/tests/templates/form_view.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "base.html" %} -{% block title %}Submit data{% endblock %} -{% block content %} -<h1>{{ message }}</h1> -<form method='post' action='.'> -{% if form.errors %} -<p class='warning'>Please correct the errors below:</p> -{% endif %} -<ul class='form'> -{{ form }} -<li><input type='submit' value='Submit'></li> -</ul> -</form> - -{% endblock %}
\ No newline at end of file diff --git a/parts/django/tests/templates/login.html b/parts/django/tests/templates/login.html deleted file mode 100644 index d55e9dd..0000000 --- a/parts/django/tests/templates/login.html +++ /dev/null @@ -1,17 +0,0 @@ -{% extends "base.html" %} -{% block title %}Login{% endblock %} -{% block content %} -{% if form.has_errors %} -<p>Your username and password didn't match. Please try again.</p> -{% endif %} - -<form method="post" action="."> -<table> -<tr><td><label for="id_username">Username:</label></td><td>{{ form.username }}</td></tr> -<tr><td><label for="id_password">Password:</label></td><td>{{ form.password }}</td></tr> -</table> - -<input type="submit" value="login" /> -<input type="hidden" name="next" value="{{ next }}" /> -</form> -{% endblock %}
\ No newline at end of file diff --git a/parts/django/tests/templates/views/article_archive_day.html b/parts/django/tests/templates/views/article_archive_day.html deleted file mode 100644 index bd2d67f..0000000 --- a/parts/django/tests/templates/views/article_archive_day.html +++ /dev/null @@ -1 +0,0 @@ -This template intentionally left blank diff --git a/parts/django/tests/templates/views/article_archive_month.html b/parts/django/tests/templates/views/article_archive_month.html deleted file mode 100644 index 3f8ff55..0000000 --- a/parts/django/tests/templates/views/article_archive_month.html +++ /dev/null @@ -1 +0,0 @@ -This template intentionally left blank
\ No newline at end of file diff --git a/parts/django/tests/templates/views/article_confirm_delete.html b/parts/django/tests/templates/views/article_confirm_delete.html deleted file mode 100644 index 3f8ff55..0000000 --- a/parts/django/tests/templates/views/article_confirm_delete.html +++ /dev/null @@ -1 +0,0 @@ -This template intentionally left blank
\ No newline at end of file diff --git a/parts/django/tests/templates/views/article_detail.html b/parts/django/tests/templates/views/article_detail.html deleted file mode 100644 index 952299d..0000000 --- a/parts/django/tests/templates/views/article_detail.html +++ /dev/null @@ -1 +0,0 @@ -Article detail template. diff --git a/parts/django/tests/templates/views/article_form.html b/parts/django/tests/templates/views/article_form.html deleted file mode 100644 index e2aa1f9..0000000 --- a/parts/django/tests/templates/views/article_form.html +++ /dev/null @@ -1,3 +0,0 @@ -Article form template. - -{{ form.errors }} diff --git a/parts/django/tests/templates/views/datearticle_archive_month.html b/parts/django/tests/templates/views/datearticle_archive_month.html deleted file mode 100644 index 3f8ff55..0000000 --- a/parts/django/tests/templates/views/datearticle_archive_month.html +++ /dev/null @@ -1 +0,0 @@ -This template intentionally left blank
\ No newline at end of file diff --git a/parts/django/tests/templates/views/urlarticle_detail.html b/parts/django/tests/templates/views/urlarticle_detail.html deleted file mode 100644 index 924f310..0000000 --- a/parts/django/tests/templates/views/urlarticle_detail.html +++ /dev/null @@ -1 +0,0 @@ -UrlArticle detail template. diff --git a/parts/django/tests/templates/views/urlarticle_form.html b/parts/django/tests/templates/views/urlarticle_form.html deleted file mode 100644 index 578dd98..0000000 --- a/parts/django/tests/templates/views/urlarticle_form.html +++ /dev/null @@ -1,3 +0,0 @@ -UrlArticle form template. - -{{ form.errors }} |