django-feedback

A pluggable user feedback app


Keywords
blog, django, feedback, ajax, user, customer, comment
License
Apache-2.0
Install
pip install django-feedback==1.1.1

Documentation

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

  • Use it (only requires template modifications):

    <!-- in header block -->
    {% include "feedback/header.html" %}
    
    <!-- in body block -->
    {% include "feedback/button.html" %}