Changeset 1712 for trunk/pylucid/PyLucid/plugins_internal/blog/models.py
- Timestamp:
- 07/24/08 13:52:28 (20 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/plugins_internal/blog/models.py
r1709 r1712 82 82 class Meta: 83 83 app_label = 'PyLucidPlugins' 84 ordering = ('createtime', 'lastupdatetime') 84 85 85 86 #______________________________________________________________________________ … … 112 113 class BlogTag(models.Model): 113 114 """ 114 FIXME: How can we add ordering?115 A blog entry tag 115 116 """ 116 117 objects = BlogTagManager() … … 129 130 class Meta: 130 131 app_label = 'PyLucidPlugins' 131 132 ordering = ('name',) 132 133 133 134 #______________________________________________________________________________