django-feedback-form-package 1.0

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangofeedbackformpackage 1.0

Feedback form package is a Django app to create and handle feedback forms on your website without writing it out yourself. Cheers

Quick start

Add “feedback” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'feedback',
]

Include the feedback URLconf in your project urls.py like this:
path('feedback/', include('feedback.urls')),

Make sure to configure your email service in settings.py. Eg using sendgrid:
EMAIL_HOST = 'smtp.sendgrid.net'
EMAIL_PORT = 587
EMAIL_HOST_USER = 'apikey'
EMAIL_HOST_PASSWORD = 'xxxxxxx' # Your key here
EMAIL_USE_TLS = True

Indicate where to send email from and to, in your settings.py like so:
EMAIL_TO = 'xxx@gmail.com'
EMAIL_FROM= 'ghaff@gmail.com' # Connected to the mail service

Start the development server:
./manage.py runserver

Visit http://127.0.0.1:8000/feedback/
to create see the glory. Dont mind the UI, this is v1, haha.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.