blob: 5fafeb51dd4146106fd91d0e0404199715378a59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# -*- coding: utf-8 -*-
from django.db import models
from django.contrib.auth.models import User
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic
from django.utils.translation import ugettext_lazy as _
class Notice(models.Model):
"""
model 'Notice' to record and display notice
"""
title = models.CharField(_("Title"), max_length=100)
pubtime = models.DateTimeField(_("Publish time"), auto_now_add=True)
category = models.ForeignKey('NoticeCategory', verbose_name=_("Category"))
publisher = models.ForeignKey(User, verbose_name=_("Publisher"))
is_important = models.BooleanField(_("Is important"), default=False)
contents = models.TextField(_("Contents"))
# NoticeAttachment to deal with attachments
attachments = generic.GenericRelation('NoticeAttachment')
class Meta:
verbose_name = _('notice')
verbose_name_plural = _('notices')
ordering = ['-pubtime', 'id']
def __unicode__(self):
return u'Notice at %s' % self.pubtime.isoformat()
def show_pubtime(self):
# used in 'list_notice.html' template
return self.pubtime.strftime('%Y-%m-%d')
class NoticeCategory(models.Model):
"""
model 'NoticeCategory' to provide category selections for 'Notice'
"""
category_name = models.CharField(_("Category name"), max_length=100)
created_time = models.DateTimeField(_("Created time"), auto_now_add=True)
class Meta:
verbose_name = _('notice category')
verbose_name_plural = _('notice categories')
def __unicode__(self):
return u'NoticeCategory : %s' % self.category_name
class NoticeAttachment(models.Model):
title = models.CharField(_("Title"), max_length=100)
description = models.TextField(_("Description"))
attachment = models.FileField(upload_to='notice/attachments',
verbose_name=_("Attachment"))
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey("content_type", "object_id")
|