Skip to content
This repository has been archived by the owner on Jan 17, 2020. It is now read-only.

Add simple issue / request system for info desk #189

Open
MarkusH opened this issue Jun 14, 2014 · 2 comments
Open

Add simple issue / request system for info desk #189

MarkusH opened this issue Jun 14, 2014 · 2 comments
Assignees
Milestone

Comments

@MarkusH
Copy link
Contributor

MarkusH commented Jun 14, 2014

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',)
@MarkusH MarkusH removed the blocked label Jul 16, 2014
@MarkusH MarkusH added this to the Conference milestone Jul 16, 2014
@DasIch
Copy link
Contributor

DasIch commented Jul 19, 2014

Just talked to Veit regarding giving out badges, replacing wrong ones etc. which he would like to log, using this system. Given that we won't be able to implement an issue system until the conference I would suggest having a text area for each ticket, that can be used for notes.

@MarkusH
Copy link
Contributor Author

MarkusH commented Jul 19, 2014

We have a different process implemented that doesn't require the website.

@MarkusH MarkusH modified the milestone: Conference Jul 19, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants