Show
Ignore:
Timestamp:
07/24/08 13:52:28 (20 months ago)
Author:
JensDiemer
Message:

blog plugin:

  • add a tag cloud ;)
  • display only tag feeds witched used in a displayed entry
  • tag ordering via django meta class
  • update the templates/CSS
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/plugins_internal/blog/models.py

    r1709 r1712  
    8282    class Meta: 
    8383        app_label = 'PyLucidPlugins' 
     84        ordering = ('createtime', 'lastupdatetime') 
    8485 
    8586#______________________________________________________________________________ 
     
    112113class BlogTag(models.Model): 
    113114    """ 
    114     FIXME: How can we add ordering? 
     115    A blog entry tag 
    115116    """ 
    116117    objects = BlogTagManager() 
     
    129130    class Meta: 
    130131        app_label = 'PyLucidPlugins' 
    131  
     132        ordering = ('name',) 
    132133 
    133134#______________________________________________________________________________