Removed django/conf/admin_templates/changelist_generic.html -- a leftover, legacy template that's no longer used

git-svn-id: http://code.djangoproject.com/svn/django/trunk@888 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-10-16 20:52:11 +00:00
parent f1ecfe991d
commit f808d1bb8c
1 changed files with 0 additions and 34 deletions

View File

@ -1,34 +0,0 @@
{% extends "base_site" %}
{% block bodyclass %}change-list{% endblock %}
{% block content %}
{% if not hide_add_link %}
<ul class="object-tools"><li><a href="/{{ admin_url }}/add/" class="addlink">Add {{ object_name }}</a></li></ul>
{% endif %}
<div id="content-main">
<div class="module">
{% if toplinks %}
<ul class="toplinks">
{% for toplink in toplinks %}
<li><a href="{{ toplink.link }}/">{{ toplink.text }}/</a></li>
{% endfor %}
</ul>
<hr />
{% endif %}
{% if changelist %}
<ul class="changelist">
{% for obj in changelist %}
<li class="{% cycle row1,row2 %}"><a href="/{{ admin_url }}/change/{{ obj.id }}/" title="Click to change">{{ obj|striptags|escape }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
{% endblock %}