django-feedback icon indicating copy to clipboard operation
django-feedback copied to clipboard

Missing requirements in project page

Open ghost opened this issue 15 years ago • 1 comments

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

ghost avatar Oct 27 '10 14:10 ghost

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.

rvm-xx avatar Nov 21 '10 22:11 rvm-xx