A Django app to create and handle feedback forms.
Project description
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-feedback-form-package-1.0.tar.gz
.
File metadata
- Download URL: django-feedback-form-package-1.0.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6100e0b8795a1d32d18605e4dbc62f6a8604abafc10a084d8f16008accc0e5a5 |
|
MD5 | 160282f82600272c83388deb1606f4bb |
|
BLAKE2b-256 | 85c5cdb223779a92b4c09cc5240cc2125b1bfa52d30cb1c4a62c906158bac114 |