Django is a python-based web framework that follows the model-template-view architechtual pattern. Django is fast, secure, and scalable! This is my first Django project, a simple poll app built with help from this tutorial. It consists of a public site that lets people view polls and vote in them, as well as an admin site to add, change, and delete polls.
Download this repo
Make sure you have python installed:$ python
Make sure you have Django installed: $ python -m django --version
Run development server $ python manage.py runserver
For more notes, take a look at the notes folder in this repo.
Models: Check out my model notes
Templates: Check out my template notes
Views: Check out my view notes
Check out my step-by-step cheet sheet
Check out basic django file structure
Resources: For more detailed information, check out the Django Documentation