A simple Django app to manage company contact information.
Project description
# Django Tools Contact
Django Tools Contact is a simple Django app to manage a company contact information and contacts
requests from a form
## Installation
1. Install with pip install `django-tools-contact`.
2. Add `djtools.contact` to your INSTALLED_APPS setting like this:
```
INSTALLED_APPS = [
...
'djtools.contact',
]
```
3. Add your Google Maps API key nd your contact information in your project settings:
```
DJTOOLS_CONTACT_GMAPS_APIKEY = "ABCDE123"
DJTOOLS_CONTACT_SITE_DOMAIN = "www.example.com"
DJTOOLS_CONTACT_MAIL_FROM = "no-reply@example.com"
DJTOOLS_CONTACT_MAIL_TO = ["admin@example.com"]
```
4. It has a dependency over `django-recaptcha`. Follow their instructions as well:
[Django ReCaptcha](https://github.com/praekelt/django-recaptcha).
5. You can use the `ContactRequestView` like this:
```
from djtools.contact.views import ContactRequestView
urlpatterns = [
path('contact/', ContactRequestView.as_view(), name='contact'),
]
```
6. Run `python manage.py migrate` to create the contact models.
7. If you want to show the comapny contact information in the same page as the contact form
you need to enable this setting `DJTOOLS_CONTACT_INFO=True`, then start the development server and
visit http://127.0.0.1:8000/admin/ to create add the contact information (you'll need the Admin app
enabled).
8. Visit http://127.0.0.1:8000/contact/ to see the contact information and send contact requests.
## References
https://github.com/pydanny/cookiecutter-djangopackage/
Django Tools Contact is a simple Django app to manage a company contact information and contacts
requests from a form
## Installation
1. Install with pip install `django-tools-contact`.
2. Add `djtools.contact` to your INSTALLED_APPS setting like this:
```
INSTALLED_APPS = [
...
'djtools.contact',
]
```
3. Add your Google Maps API key nd your contact information in your project settings:
```
DJTOOLS_CONTACT_GMAPS_APIKEY = "ABCDE123"
DJTOOLS_CONTACT_SITE_DOMAIN = "www.example.com"
DJTOOLS_CONTACT_MAIL_FROM = "no-reply@example.com"
DJTOOLS_CONTACT_MAIL_TO = ["admin@example.com"]
```
4. It has a dependency over `django-recaptcha`. Follow their instructions as well:
[Django ReCaptcha](https://github.com/praekelt/django-recaptcha).
5. You can use the `ContactRequestView` like this:
```
from djtools.contact.views import ContactRequestView
urlpatterns = [
path('contact/', ContactRequestView.as_view(), name='contact'),
]
```
6. Run `python manage.py migrate` to create the contact models.
7. If you want to show the comapny contact information in the same page as the contact form
you need to enable this setting `DJTOOLS_CONTACT_INFO=True`, then start the development server and
visit http://127.0.0.1:8000/admin/ to create add the contact information (you'll need the Admin app
enabled).
8. Visit http://127.0.0.1:8000/contact/ to see the contact information and send contact requests.
## References
https://github.com/pydanny/cookiecutter-djangopackage/
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
Built Distribution
Close
Hashes for django-tools-contact-1.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7ad232ec90417f0bcdf1f9ef4e68281b66eac7bc9945a37dd464f94f534838e |
|
MD5 | 8717c889bba22d86c756f4af1e120d71 |
|
BLAKE2b-256 | e9b398b6866204b82915016e1c5b6d1e3d41a568b90e10e63d4231fdad98c424 |
Close
Hashes for django_tools_contact-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a1c8b51037aacf7573d12ef183ff0c431f4941860befe100b065c91274ff2e9 |
|
MD5 | 89f8fb1091fbd35391789985fbebf1c8 |
|
BLAKE2b-256 | 7f3df99b5a0da1bb1cdd8bf5627a65670002f4008640ad2333a784a62f8798b1 |