File: index.rst

package info (click to toggle)
python-django-contact-form 2.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 320 kB
  • sloc: python: 473; makefile: 142
file content (41 lines) | stat: -rw-r--r-- 867 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.. _index:

django-contact-form |release|
=============================

django-contact-form provides customizable contact-form functionality
for `Django <https://www.djangoproject.com/>`_-powered Web sites.

Basic functionality (collecting a name, email address and message) can
be achieved out of the box by setting up a few templates and adding
one line to your site's root URLconf:

.. code-block:: python

    path('contact/', include('django_contact_form.urls')),

For notes on getting started quickly, and on how to customize
django-contact-form's behavior, read through the full documentation
below.


.. toctree::
   :caption: Installation and configuration
   :maxdepth: 1

   install
   quickstart

.. toctree::
   :caption: For developers
   :maxdepth: 1

   forms
   views

.. toctree::
   :caption: Other documentation
   :maxdepth: 1

   upgrade
   faq