Django application templates
Description Render the application specific html via View Create the templates dir dj-env) [dj_adm@localhost polls]$ mkdir templates (dj-env) [dj_adm@localhost polls]$ mkdir -p templates/polls/ (dj-env) [dj_adm@localhost polls]$ tree . ├── admin.py ├── apps.py ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ ├── 0001_initial.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── models.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc ├── templates │ └── polls ├── tests.py ├── urls.py └── views.py 5 directories, 17 files In settings.py TEMPLATES = [ { 'BACKEND' : 'django.template.backends.django.D...