mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-17 03:39:25 +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.auth.middleware.AuthenticationMiddleware',
|
||||||
'django.contrib.messages.middleware.MessageMiddleware',
|
'django.contrib.messages.middleware.MessageMiddleware',
|
||||||
'sso.middleware.InactiveLogoutMiddleware',
|
'sso.middleware.InactiveLogoutMiddleware',
|
||||||
'pagination.middleware.PaginationMiddleware',
|
|
||||||
'sso.middleware.IGBMiddleware',
|
'sso.middleware.IGBMiddleware',
|
||||||
'sso.middleware.IPTrackingMiddleware',
|
'sso.middleware.IPTrackingMiddleware',
|
||||||
)
|
)
|
||||||
@@ -71,7 +70,6 @@ INSTALLED_APPS = (
|
|||||||
'piston',
|
'piston',
|
||||||
'djcelery',
|
'djcelery',
|
||||||
'registration',
|
'registration',
|
||||||
'pagination',
|
|
||||||
'formtools',
|
'formtools',
|
||||||
'eve_proxy',
|
'eve_proxy',
|
||||||
'eve_api',
|
'eve_api',
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
{% load humanize %}
|
{% load humanize %}
|
||||||
{% load naturaltimediff %}
|
{% load naturaltimediff %}
|
||||||
{% load pagination_tags %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
@@ -30,7 +29,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if view_members %}
|
{% if view_members %}
|
||||||
{% autopaginate members 25 %}
|
|
||||||
<table class="zebra-striped" id="members">
|
<table class="zebra-striped" id="members">
|
||||||
<thead>
|
<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>
|
<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>
|
</tbody>
|
||||||
</table>
|
</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>
|
<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 %}
|
{% endif %}
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ fabric
|
|||||||
flup
|
flup
|
||||||
celery==2.2.6
|
celery==2.2.6
|
||||||
django-celery==2.2.4
|
django-celery==2.2.4
|
||||||
-e git+https://github.com/ericflo/django-pagination.git@47e7ec874cd7dddda5ed#egg=django-pagination
|
|
||||||
xmpppy
|
xmpppy
|
||||||
django-sentry
|
django-sentry
|
||||||
nexus
|
nexus
|
||||||
|
|||||||
Reference in New Issue
Block a user