mjtorn / django-feedback

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-feedback

Django Feedback is a simple Django application that makes it trivialto 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

image

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

image

Viewing a piece of feedback from a user.

About

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

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%