Hi Welcome to my Leads Management System.
In this project, i am develop a leads management system to help various agents track leads that have been assigned to them.
All you need for this project include:
- Python
- Django
- Tailwind CSS
We will be using the django crispy forms plugin to improve on the appearance of our forms.
Install it using:
pip install django-cripsy-forms
Then also from the guide of django crispy forms in the docs. We are required to pick a Template Pack.
There a variety of template packs but since we are working with tailwind css
. Luckily there is a tailwind css pack.
We install it using"
pip install crispy-tailwind
.
By default therese plugins require that we add them to our settings.py
file in the django project.
INSTALLED_APPS = [
# third party crispy forms plugin
'crispy_forms',
'crispy_tailwind',
]
CRISPY_ALLOWED_TEMPLATE_PACKS = 'tailwind'
CRISPY_TEMPLATE_PACK = 'tailwind'
More information about django plugins can be found at : https://djangopackages.org