From: yomguy Date: Fri, 29 Apr 2011 23:30:01 +0000 (+0200) Subject: bugfix, cleanup X-Git-Tag: 1.1~254 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=69c8eda287e97503de448f40b4bf3a8f60cf8479;p=telemeta.git bugfix, cleanup --- diff --git a/telemeta/__init__.py b/telemeta/__init__.py index 487997a2..12c89576 100644 --- a/telemeta/__init__.py +++ b/telemeta/__init__.py @@ -12,7 +12,7 @@ U{http://telemeta.org} """ __docformat__ = 'epytext en' -__version__ = '0.7.1' +__version__ = '0.7.2' __url__ = 'http://telemeta.org' __copyright__ = '(C) 2007-2011 Parisson' __license__ = 'CeCILL-2' diff --git a/telemeta/htdocs/css/telemeta.css b/telemeta/htdocs/css/telemeta.css index 5765ecfb..01f65a43 100644 --- a/telemeta/htdocs/css/telemeta.css +++ b/telemeta/htdocs/css/telemeta.css @@ -1040,7 +1040,7 @@ a.image-link { } .list_item:hover{ - background-color: #6A0307; + background-color: #0f3179; color:white !important; } diff --git a/telemeta/templatetags/paginator.py b/telemeta/templatetags/paginator.py index 9abee1b6..65d1b96e 100644 --- a/telemeta/templatetags/paginator.py +++ b/telemeta/templatetags/paginator.py @@ -10,7 +10,7 @@ def paginator(context, adjacent_pages=2): last page links in addition to those created by the object_list generic view. - Thanks to tummy.com, ltd. + Thanks to tummy.com, ltd. http://www.tummy.com/Community/Articles/django-pagination/ """ @@ -39,5 +39,5 @@ def paginator(context, adjacent_pages=2): 'show_last': context['pages'] not in page_numbers, } -register.inclusion_tag('telemeta_default/paginator.html', takes_context=True)(paginator) +register.inclusion_tag('telemeta/paginator.html', takes_context=True)(paginator)