aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-14 22:45:12 +0200
committerAymeric Augustin2013-10-14 23:30:04 +0200
commit5dd6de619b7b4fa5212c79f60a59e6d207ca5c6a (patch)
treea57b05143240ded51c58a821dfc84ef73d0d0a2a /example
parentf8538b692e0b209015e95655591be4f6bb3eec33 (diff)
downloaddjango-debug-toolbar-5dd6de619b7b4fa5212c79f60a59e6d207ca5c6a.tar.bz2
Remove unecessary template.
Diffstat (limited to 'example')
-rw-r--r--example/templates/admin/login.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/example/templates/admin/login.html b/example/templates/admin/login.html
deleted file mode 100644
index b15b767..0000000
--- a/example/templates/admin/login.html
+++ /dev/null
@@ -1,34 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block extrastyle %}{% load adminmedia %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/login.css" />{% endblock %}
-
-{% block bodyclass %}login{% endblock %}
-
-{% block content_title %}{% endblock %}
-
-{% block breadcrumbs %}{% endblock %}
-
-{% block content %}
-{% if error_message %}
-<p class="errornote">{{ error_message }}</p>
-{% endif %}
-<div id="content-main">
-<form action="{{ app_path }}" method="post" id="login-form">
- <div class="form-row">
- <label for="id_username">{% trans 'Username:' %}</label> <input type="text" name="username" id="id_username" value="example" />
- </div>
- <div class="form-row">
- <label for="id_password">{% trans 'Password:' %}</label> <input type="password" name="password" id="id_password" value="example" />
- <input type="hidden" name="this_is_the_login_form" value="1" />
- </div>
- <div class="submit-row">
- <label>&nbsp;</label><input type="submit" value="{% trans 'Log in' %}" />
- </div>
-</form>
-
-<script type="text/javascript">
-document.getElementById('id_username').focus()
-</script>
-</div>
-{% endblock %}