Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaredly/django-feedback
A reusable django app to add an AJAX "feedback" tab to your site
https://github.com/jaredly/django-feedback
Last synced: 6 days ago
JSON representation
A reusable django app to add an AJAX "feedback" tab to your site
- Host: GitHub
- URL: https://github.com/jaredly/django-feedback
- Owner: jaredly
- License: mit
- Created: 2010-02-28T04:02:07.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2018-12-07T12:08:20.000Z (almost 6 years ago)
- Last Synced: 2024-11-02T02:33:01.971Z (13 days ago)
- Language: Python
- Homepage:
- Size: 76.2 KB
- Stars: 57
- Watchers: 8
- Forks: 33
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Feedback
========Creates an ajax "feedback" button on your site, which pops up a form for the
user to fill.+ Add it to your installed apps::
INSTALLED_APPS += ('feedback',)
+ Sync the database
+ Add a line to your urls.py::
url(r'^feedback/', include('feedback.urls')),
+ Use it (only requires template modifications)::
{% include "feedback/header.html" %}
{% include "feedback/button.html" %}+ Or use your own button which pops up feedback form::
{% include "feedback/feedback.html" %}
+ All feedback can be seen in the Django admin interface
+ Class "modal-open" is added to body for compatibility with Bootstrap modal.
+ Feedback can optionally be emailed to you as well, as it is submitted. Specify your email address in settings.py:
FEEDBACK_EMAIL = "[email protected]"