Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 934 Bytes

README.rst

File metadata and controls

25 lines (18 loc) · 934 Bytes

django-basic-feedback

https://travis-ci.org/SeanHayes/django-basic-feedback.svg?branch=master https://coveralls.io/repos/SeanHayes/django-basic-feedback/badge.png?branch=master

Install

  1. Add 'django_basic_feedback' to INSTALLED_APPS.
  2. Add '(r'^feedback/', include('django_basic_feedback.urls')),' to your root URL conf.
  3. Put the following in your template's <head> tag (need to run './manage.py collectstatic'):
    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}feedback.css" /> <script type="text/javascript" src="{{ STATIC_URL }}feedback.js"></script>
  4. Put the following in the body of your template:
    {% load feedback_widget %} {% feedback_widget %}
  5. Run './manager.py syncdb'.