Add location to Event object

This commit is contained in:
Aarni Halinen
2019-03-12 15:10:52 +02:00
parent a708a6377d
commit 8194ab43cd
3 changed files with 20 additions and 1 deletions
+1
View File
@@ -63,6 +63,7 @@ class Event(BaseFeed):
end_time = models.DateTimeField(default=timezone.now)
signupForm = models.ManyToManyField(
'SignupForm', blank=True)
location = models.CharField(max_length=255, blank=True)
def __str__(self):
return _('Event: {}').format(self.title)