https://github.com/phalbert/django_polls
A simple project to learn django
https://github.com/phalbert/django_polls
Last synced: about 1 year ago
JSON representation
A simple project to learn django
- Host: GitHub
- URL: https://github.com/phalbert/django_polls
- Owner: phalbert
- Created: 2020-02-20T16:01:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-30T10:31:29.000Z (almost 2 years ago)
- Last Synced: 2025-01-23T07:29:52.420Z (about 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple app to learn django
## Motivation
I have been using flask due to its minimality and was quite hesistant to pick up Django. However, I have come to this point due to the following reasons:
- Productivity is key
- A lot of work goes into building a complex application with flask. Django has a lot of this work already done
### Templates
Your project’s TEMPLATES setting describes how Django will load and render templates. The default settings file configures a DjangoTemplates backend whose APP_DIRS option is set to True. By convention DjangoTemplates looks for a “templates” subdirectory in each of the INSTALLED_APPS.