Django site contact Message model and admin
Project description
Installation
$ pip install django-contact-message
settings.py
INSTALLED_APPS+=['django_contact_message']
migrate
$ python manage.py migrate
Features
Message
model- admin
Models
model | table | columns/fields |
---|---|---|
Message |
django_contact_message |
id ,user ,email ,subject ,message ,created_at |
Examples
from django.contrib.auth.mixins import LoginRequiredMixin
from django.views.generic.base import View
from django_contact_message.models import Message
class View(LoginRequiredMixin, View):
def post(self, request, *args, **kwargs):
Message(
user=request.user,
subject=request.POST['subject'],
email=request.POST['email'],
message=request.POST['message'],
).save()
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_contact_message-0.0.0.tar.gz
.
File metadata
- Download URL: django_contact_message-0.0.0.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89ebdec15ee7cdf815f3c547a202220dffc83a432ff8cae7dc96434c47ac6598 |
|
MD5 | 358c7171ed170cf9971c2cc0b11c4cd4 |
|
BLAKE2b-256 | 3bded9b6d52c95b1e7388d84d041a4e479a09d494cc0e13ec006c2bb9f88bb44 |