post default news

This commit is contained in:
2020-08-14 20:43:41 +00:00
parent 4aad5bbaec
commit eaf79ee823

View File

@@ -100,7 +100,7 @@ class Post(models.Model):
('E', _('Event')),
('F', _('FetMeeting'))
]
post_type = models.CharField(max_length=1, choices=__choices, editable=False)
post_type = models.CharField(max_length=1, choices=__choices, editable=False, default='N')
is_event = models.BooleanField(default=False)