Django Class Based Views and Crispy Forms Example
create virtualenv and install requirements
python3 -m venv myvenv
pip install -r requirements.txt
Create database tables, user for admin panel and run project.
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Be Good. Imagine. Create.