Remove the dependency on django-pagination, fixes #214

This commit is contained in:
2011-12-24 00:05:23 +00:00
parent fe8ff3479c
commit 94389ab8e0
3 changed files with 0 additions and 7 deletions

View File

@@ -32,7 +32,6 @@ MIDDLEWARE_CLASSES = (
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'sso.middleware.InactiveLogoutMiddleware',
'pagination.middleware.PaginationMiddleware',
'sso.middleware.IGBMiddleware',
'sso.middleware.IPTrackingMiddleware',
)
@@ -71,7 +70,6 @@ INSTALLED_APPS = (
'piston',
'djcelery',
'registration',
'pagination',
'formtools',
'eve_proxy',
'eve_api',

View File

@@ -2,7 +2,6 @@
{% load humanize %}
{% load naturaltimediff %}
{% load pagination_tags %}
{% block content %}
@@ -30,7 +29,6 @@
{% endif %}
{% if view_members %}
{% autopaginate members 25 %}
<table class="zebra-striped" id="members">
<thead>
<tr><th>Name</th><th>Skillpoints</th><th>Join Date</th><th>Director?</th><th>Roles?</th><th>API Key?</th><th>Key Active?</th></tr>
@@ -42,8 +40,6 @@
</tbody>
</table>
<p>{% paginate %}</p>
<p><a href="{% url eveapi-corporation-members-csv corporation.id %}" class="btn" title="Exports the membership list of this corporation to a CSV file.">Export as CSV</a></p>
{% endif %}