This repository was archived by the owner on Jan 17, 2020. It is now read-only.
Add simple issue / request system for info desk #189
Open
Description
In addition to #188 a simple issue / request system is helpful which allows
people at the information desk to take some notes and leave them for later
volunteers.
The form should be included on the detail view of #188 and contain only the
textarea for the text field plus the submit button.
The current idea is rather simple:
class Comment(models.Model):
profile = models.ForeignKey('accounts.Profile')
author = models.ForeignKey('auth.User')
text = models.TextField()
posted = models.DateTimeField(auto_add_now=True)
class Meta:
ordering = ('-posted',)