More Intro to Django
Posted on Jun 16th, 2021
Today we’ll continue our intro to Django.
🎯 Project
Today we’ll expand our perspective on Django and see more of it in action with a larger application. This project is due Friday morning.
This assignment asks you to modify existing code to augment its functionality. Please work on this assignment in small groups:
groups = [
('Quinten', 'Wendy', 'Robert'),
('Sara', 'Roan', 'Logan'),
('Dee', 'Shaune', 'Emily'),
('Brian', 'Greg')
]
🔖 Resources
- Database Design Tutorial
- MDN: Django Introduction
- Official Django documentation
- Django Girls Tutorial
- Django Topic Guide (this is a useful table of contents for the Django docs)
- Pretty Printed Django Videos: Videos 1-10 are the ones specific to Django. There are other videos on related topics; they are useful but not relevant to the material we’re covering right now.
- Django Chat Podcast: How to Learn Django
- MDN Django Docs -> See especially the Intro section
- Pipenv documentation
🦉 Code & Notes