From f6fab23e5eafffe315c22a403015876fe3d99fee Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 19 Jul 2011 11:10:35 +0100 Subject: [PATCH] Remove pagination from logs, as we only show 50 lines anyway --- app/eve_api/templates/eve_api/log.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/app/eve_api/templates/eve_api/log.html b/app/eve_api/templates/eve_api/log.html index 0cd9d21..ca3d719 100644 --- a/app/eve_api/templates/eve_api/log.html +++ b/app/eve_api/templates/eve_api/log.html @@ -1,14 +1,11 @@ {% extends "base.html" %} {% block title %}EVE API Access Logs{% endblock %} -{% load pagination_tags %} + {% block content %} -

Access Logs for API Key {{ userid }}

- -{% autopaginate logs 20 %} {% for log in logs %} @@ -16,7 +13,4 @@ {% endfor %}
Service IDDate / TimeAPI
{{ log.service }} {{ log.time_access }}
-{% paginate %} - - {% endblock %}