django-user-activation is a Django app to manage user activation on registration.
Project description
About
django-user-activation is a Django app to manage user activation on registration.
Requirements
Python >= 3.10
Django >= 5.0
Setup
Install from pip:
python -m pip install django-user-activation
and then add it to your installed apps:
INSTALLED_APPS = [
...,
"django_user_activation",
...,
]
Configuration
Ensure that django_user_activation’s URLs are included in your project’s urls.py:
from django.urls import path, include urlpatterns = [ ..., path('user/', include('django_user_activation.urls')), ..., ]
Configure the behaviour in your Django settings:
USER_ACTIVATION_TOKEN_LIFE: int | float
The number of seconds that the activation token is valid for. Default is 3600 (1 hour).
USER_ACTIVATION_EMAIL_SUBJECT: str
The subject of the activation email. Default is “Email Verification”.
USER_ACTIVATION_WITH_CELERY: bool
Whether to use Celery to send the activation email. Default is False. If set to True, you must have Celery set up and configured in your project.
USER_ACTIVATION_LOGGER: bool
Whether to log activation events. Default is False.
Configure the email backend in your Django settings:
EMAIL_HOST = 'smtp.example.com' EMAIL_PORT = 587 EMAIL_USE_TLS = True EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = ''
- Templates
You can override the templates used by django-user-activation by creating your own templates in your project under the templates/user_activation directory.
- The templates that can be overridden are:
django_user_activation/user_activation.html
django_user_activation/user_activation.txt
Example Usage
...
from django_user_activation import send_activation_email
...
def register(request):
if request.method == "POST":
form = UserRegistrationForm(request.POST)
if form.is_valid():
user = form.save(commit=False)
user.is_active = False
user.save()
send_activation_email(request, user)
...
Testing
To run the tests, clone the repository and install the requirements:
python -m pip install -r requirements.txt
and then run:
python manage.py test
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
File details
Details for the file django_user_activation-1.0.0.tar.gz
.
File metadata
- Download URL: django_user_activation-1.0.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62bc2cbf46308e5b250199bf9c7ccb44d74aa82ed9a64b88de90e624baa21560 |
|
MD5 | f334dbe8353a67d5cce79e8643ad80bd |
|
BLAKE2b-256 | e45edeb4a7b6ac5b1646ab14866a90c03ce5dac2967ca86a28af765af71a06ef |
File details
Details for the file django_user_activation-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: django_user_activation-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebde67e54936c1874e6d417954effea424d816632961f615dfaba7e89a0a5813 |
|
MD5 | 3b6c63475fdf4b7f046822a76631e984 |
|
BLAKE2b-256 | 069f24d83ff7c74793c094997b0d83d14fc34cbfbf591dee7a11ec2eb2c1a282 |