https://github.com/analyticalnahid/universal-basic-registration-django
A basic universal registration app for any django project
https://github.com/analyticalnahid/universal-basic-registration-django
django django-application django-rest-framework djangoproject
Last synced: about 2 months ago
JSON representation
A basic universal registration app for any django project
- Host: GitHub
- URL: https://github.com/analyticalnahid/universal-basic-registration-django
- Owner: analyticalnahid
- Created: 2023-01-31T11:35:16.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T11:41:28.000Z (over 2 years ago)
- Last Synced: 2025-02-02T12:37:34.864Z (4 months ago)
- Topics: django, django-application, django-rest-framework, djangoproject
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# universal-basic-registration-django
## 1.Install django-crispy-forms:
pip install django-crispy-forms## 2.Set up django-crispy-forms in your Django project:
- Install the package: pip install django-crispy-forms
- Add 'crispy_forms' to the INSTALLED_APPS list in your Django settings.py file.
- Specify the template pack to use by adding the following line to your settings.py: CRISPY_TEMPLATE_PACK = 'bootstrap4'
- Load the crispy forms in your template by adding this line in your template: {% load crispy_forms_tags %}
Examples:-
INSTALLED_APPS = [
...
'app_login'
'crispy_forms',
...
]CRISPY_TEMPLATE_PACK = 'bootstrap4'