Skip to content
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
@MarkusH

Description

@MarkusH

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',)

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions