From a827199fb168aa676e3fdbdcfdb04a021f44f3f7 Mon Sep 17 00:00:00 2001 From: Weitian LI Date: Wed, 14 May 2014 11:20:53 +0800 Subject: * upaded display format of model Notice 'notice/models.py' * updated 'archive/urls.py', shortened the url, added a redirect * updated poster image: 'skaschool-poster.jpg' * updated the lecturer information of 'page/introduction.html' --- notice/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notice') diff --git a/notice/models.py b/notice/models.py index 63b17b2..92b34e5 100644 --- a/notice/models.py +++ b/notice/models.py @@ -26,7 +26,7 @@ class Notice(models.Model): ordering = ['-pubtime', 'id'] def __unicode__(self): - return u'Notice at %s' % self.pubtime.isoformat() + return u'Notice %s: %s' % (self.category.category_name, self.title) def show_pubtime(self): # used in 'list_notice.html' template -- cgit v1.2.2