Skip to content

django-feedback is an app for easily collecting feedback from your users.

License

Notifications You must be signed in to change notification settings

girasquid/django-feedback

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-feedback

Django Feedback is a simple Django application that makes it trivial to start accepting user feedback from authenticated users within your Django project.

Installation

Put feedback in your INSTALLED_APPS, and set FEEDBACK_CHOICES to a 2-tuple of feedback types in your settings file. For example:

FEEDBACK_CHOICES = (
        ('bug', 'Bug'),
        ('feature_request', 'Feature Request')
)

Also, be sure to include feedback.urls somewhere in your urls.py file.

Add feedback.context_processors.feedback_form to TEMPLATE_CONTEXT_PROCESSORS, and feedback_form will be in the context for all authenticated users.

To support anonymous feedback, set ALLOW_ANONYMOUS_FEEDBACK to true in your settings file.

Screenshots

http://cloud.github.com/downloads/girasquid/django-feedback/django-feedback-1.PNG

Overview in your admin index. Allows you to see all feedback current in the system.

http://cloud.github.com/downloads/girasquid/django-feedback/django-feedback-2.PNG

Viewing a piece of feedback from a user.

About

django-feedback is an app for easily collecting feedback from your users.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published