From: yomguy Date: Fri, 29 Apr 2011 22:46:39 +0000 (+0200) Subject: cleanup X-Git-Tag: 1.1~256 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=3cf87b8529d1faab9f2127b66a5aea57edb0a44c;p=telemeta.git cleanup --- diff --git a/telemeta/templates/telemeta_default/collection_list.html b/telemeta/templates/telemeta_default/collection_list.html index 6bff068e..3d3005fe 100644 --- a/telemeta/templates/telemeta_default/collection_list.html +++ b/telemeta/templates/telemeta_default/collection_list.html @@ -9,7 +9,7 @@ {% endblock %} {% block title_buttons %} {% trans "All" %} - {% trans "Unpublished" %} + {% trans "Unpublished" %} {% trans "Published" %} {% if user.is_authenticated and perms.telemeta.add_mediacollection %} {% trans "Add" %} diff --git a/telemeta/templatetags/telemeta_utils.py b/telemeta/templatetags/telemeta_utils.py index b9bceb08..7f278809 100644 --- a/telemeta/templatetags/telemeta_utils.py +++ b/telemeta/templatetags/telemeta_utils.py @@ -291,39 +291,3 @@ def set_var(parser, token): raise template.TemplateSyntaxError("'set' tag must be of the form: {% set = %}") return SetVarNode(parts[1], parts[3]) -def paginator(context, adjacent_pages=2): - """ - To be used in conjunction with the object_list generic view. - - Adds pagination context variables for use in displaying first, adjacent and - last page links in addition to those created by the object_list generic - view. - - """ - startPage = max(context['page'] - adjacent_pages, 1) - if startPage <= 3: startPage = 1 - endPage = context['page'] + adjacent_pages + 1 - if endPage >= context['pages'] - 1: endPage = context['pages'] + 1 - page_numbers = [n for n in range(startPage, endPage) \ - if n > 0 and n <= context['pages']] - page_obj = context['page_obj'] - paginator = context['paginator'] - - return { - 'page_obj': page_obj, - 'paginator': paginator, - 'hits': context['hits'], - 'results_per_page': context['results_per_page'], - 'page': context['page'], - 'pages': context['pages'], - 'page_numbers': page_numbers, - 'next': context['next'], - 'previous': context['previous'], - 'has_next': context['has_next'], - 'has_previous': context['has_previous'], - 'show_first': 1 not in page_numbers, - 'show_last': context['pages'] not in page_numbers, - } - -register.inclusion_tag('paginator.html', takes_context=True)(paginator) - diff --git a/telemeta/urls.py b/telemeta/urls.py index 801aee3a..128df0d8 100644 --- a/telemeta/urls.py +++ b/telemeta/urls.py @@ -103,8 +103,8 @@ urlpatterns = patterns('', # collections url(r'^collections/$', 'django.views.generic.list_detail.object_list', dict(all_collections, paginate_by=20, template_name="telemeta/collection_list.html"), name="telemeta-collections"), - url(r'^collections_novel/$', 'django.views.generic.list_detail.object_list', - dict(all_collections_novel, paginate_by=20, template_name="telemeta/collection_list.html"), name="telemeta-collections-novel"), + url(r'^collections_unpublished/$', 'django.views.generic.list_detail.object_list', + dict(all_collections_novel, paginate_by=20, template_name="telemeta/collection_list.html"), name="telemeta-collections-unpublished"), url(r'^collections_published/$', 'django.views.generic.list_detail.object_list', dict(all_collections_published, paginate_by=20, template_name="telemeta/collection_list.html"), name="telemeta-collections-published"), url(r'^collections/?page=(?P[0-9]+)$',