├── .gitignore ├── db.sqlite3 ├── django_templates_project ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── template_app ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── static │ └── template_app │ │ └── metallica.jpg ├── templates │ └── template_app │ │ ├── first.html │ │ └── weather.html ├── tests.py ├── urls.py └── views.py └── templates ├── 404.html └── base.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/.gitignore -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /django_templates_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_templates_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/django_templates_project/asgi.py -------------------------------------------------------------------------------- /django_templates_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/django_templates_project/settings.py -------------------------------------------------------------------------------- /django_templates_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/django_templates_project/urls.py -------------------------------------------------------------------------------- /django_templates_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/django_templates_project/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/manage.py -------------------------------------------------------------------------------- /template_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/admin.py -------------------------------------------------------------------------------- /template_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/apps.py -------------------------------------------------------------------------------- /template_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/models.py -------------------------------------------------------------------------------- /template_app/static/template_app/metallica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/static/template_app/metallica.jpg -------------------------------------------------------------------------------- /template_app/templates/template_app/first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/templates/template_app/first.html -------------------------------------------------------------------------------- /template_app/templates/template_app/weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/templates/template_app/weather.html -------------------------------------------------------------------------------- /template_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/tests.py -------------------------------------------------------------------------------- /template_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/urls.py -------------------------------------------------------------------------------- /template_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/template_app/views.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P19-DjangoTemplateProject/HEAD/templates/base.html --------------------------------------------------------------------------------