]> git.parisson.com Git - telemeta.git/commitdiff
bugfix, cleanup
authoryomguy <yomguy@parisson.com>
Fri, 29 Apr 2011 23:30:01 +0000 (01:30 +0200)
committeryomguy <yomguy@parisson.com>
Fri, 29 Apr 2011 23:30:01 +0000 (01:30 +0200)
telemeta/__init__.py
telemeta/htdocs/css/telemeta.css
telemeta/templatetags/paginator.py

index 487997a218baf36e5074bf0d4753dc7ba2e20ccd..12c89576e2c4ee5927aa9ca581e631de20c50419 100644 (file)
@@ -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'
index 5765ecfbe8b2b998e25879cbbadff04c5a2db375..01f65a438215b341a103b876773c908b786cc903 100644 (file)
@@ -1040,7 +1040,7 @@ a.image-link {
 }
 
 .list_item:hover{
-    background-color: #6A0307;
+    background-color: #0f3179;
     color:white !important;
 }
 
index 9abee1b68d6a69cb0f6cbd5ae27482c8dfe280e0..65d1b96e0f20669d4ace40646685b369cbb47f4b 100644 (file)
@@ -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)