mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Remove the dependency on django-pagination, fixes #214
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user