Skip to content

Provides a Feedback button on your pages and lets you view feedback via Django's admin site. Requires jQuery.

License

Notifications You must be signed in to change notification settings

jonmer85/django-basic-feedback

 
 

Repository files navigation

= 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'.

About

Provides a Feedback button on your pages and lets you view feedback via Django's admin site. Requires jQuery.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 87.4%
  • JavaScript 7.2%
  • CSS 5.4%