Django CRUD
Posted on Jun 18th, 2021
For this weekend assignment, keep working with your code buddies from this week.
🎯 Project
Build a CRUD application from scratch. This app should let you catalog your music collection.
This is due on Monday.
groups = [
('Quinten', 'Wendy', 'Robert'),
('Sara', 'Roan', 'Logan'),
('Dee', 'Shaune', 'Emily'),
('Brian', 'Greg')
]
🔖 Resources
🐴 Django docs
- Model Relationships
- How validators are run
- Validation on a model form
- URLs
- Django Template Language
- Making Queries (using the ORM)s
- Working with Forms -> read this first
- Form and field validation
- The Forms API -> details on form object attribute and methods (such as
as_p()
) - CSRF
- Topic Guide