1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 23:48:47 +00:00

Modify group msg notification

This commit is contained in:
xiez
2012-06-26 14:20:37 +08:00
parent 29eb8ad6c9
commit 5b39f73488
7 changed files with 42 additions and 19 deletions

View File

@@ -6,9 +6,9 @@ class Notification(models.Model):
primary = models.BooleanField(default=False)
class UserNotification(models.Model):
email = models.EmailField(max_length=255)
note_type = models.CharField(max_length=30)
detail = models.CharField(max_length=100)
to_user = models.EmailField(max_length=255)
msg_type = models.CharField(max_length=30)
detail = models.TextField()
class NotificationForm(ModelForm):
"""