Skip to main content

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

  1. Add “feedback” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'feedback',
    ]
  2. Include the feedback URLconf in your project urls.py like this:

    path('feedback/', include('feedback.urls')),
  3. 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
  4. 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
  5. Start the development server:

    ./manage.py runserver
  6. 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

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-feedback-form-package-1.0.tar.gz (5.3 kB view details)

Uploaded Source

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

Hashes for django-feedback-form-package-1.0.tar.gz
Algorithm Hash digest
SHA256 6100e0b8795a1d32d18605e4dbc62f6a8604abafc10a084d8f16008accc0e5a5
MD5 160282f82600272c83388deb1606f4bb
BLAKE2b-256 85c5cdb223779a92b4c09cc5240cc2125b1bfa52d30cb1c4a62c906158bac114

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page