diff options
| author | Weitian LI <liweitianux@gmail.com> | 2014-06-24 16:39:42 +0800 | 
|---|---|---|
| committer | Weitian LI <liweitianux@gmail.com> | 2014-06-24 16:39:42 +0800 | 
| commit | ed3d74e61300f91818eeff9dad7e9d35c556f75a (patch) | |
| tree | 62c96fd6e158068567eebb5072406911e99db47d /archive/models.py | |
| parent | a64eb136b0d8710ff132551f149a39b3a45da1f9 (diff) | |
| download | django-skaschool-ed3d74e61300f91818eeff9dad7e9d35c556f75a.tar.bz2 | |
Added app schedule, tools and archive/templatetags; updated settings.
* Added app 'schedule' to provides a more generic schedule page
* Added fake app 'tools' to holds generic utilities
* Moved notice/templatetags to tools/templatetags
* Small change to archive.models.Archive display format
* Added archive/templatetags
* Small update to introduction page
Diffstat (limited to 'archive/models.py')
| -rw-r--r-- | archive/models.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/archive/models.py b/archive/models.py index 791750a..47903e4 100644 --- a/archive/models.py +++ b/archive/models.py @@ -30,7 +30,8 @@ class Archive(models.Model):          ordering = ['category', '-pubtime', 'id']      def __unicode__(self): -        return u'Archive %s: %s' % (self.category.name, self.title) +        return u'Archive #%s: (%s) %s' % ( +                self.id, self.category.name, self.title)      def show_pubtime(self):          # used in 'list_notice.html' template | 
