django-feedback
django-feedback copied to clipboard
Missing requirements in project page
Great plugin, but you must be aware that it needs: ** python 2.6 or above As a workaround, replace in view.py the following lines: try: import simplejson as json except ImportError: import json # requires python 2.6!
** appsettings django app: as a workaround, in views.py change the references to appsettings with this: from django.conf import settings as settings
Yes, great plugin!
Following magicrebirth comment on settings, I would use some FEEDBACK_MAILTO to be set in project settings, and use it in views.py:
if settings.FEEDBACK_MAILTO:
and
[settings.FEEDBACK_MAILTO], fail_silently=False)
Same approach with a FEEDBACK_MAILFROM setting.