Skip to content

geelweb/geelweb-django-contactform

Repository files navigation

ContactForm

Build status Documentation Status

Django app to manage simple contact form On Django >= 3 projects.

Detailed documentation is in the "docs" directory.

Quick start

  1. Install the app using pip
pip install django-contactform
  1. Add 'contactform' to your INSTALLED_APPS settings like this
INSTALLED_APPS = [
    ...
    'contactform',
]
  1. Configure the recipients of your form in your settings
CONTACTFORM_RECIPIENTS = ['[email protected]']
  1. Include the contactform URLconf in your project urls.py like
path('contact/', include('contactform.urls')),
  1. Add a form to your page using the contact_form template tag
{% load contact_form %}

{% contact_form %}

About

A simple Django application to manage a basic contact form

Resources

License

Stars

Watchers

Forks

Packages

No packages published