Momentum logo
Team 8 Classroom

β˜€οΈ πŸ– πŸ‰ Summer of Django πŸ‰ πŸ– β˜€οΈ

Posted on Jun 21st, 2021

You’ve now seen how to handle data in a Django application with basic operations in these CRUD categories:

  • Create - when we add a new model instance to the database
  • Read - when we query the database to look up existing data
  • Update - when we query the database to find existing data so we can change it
  • Destroy - when we find existing data in the database and delete it

At the heart of many web applications you’ll find variations on this theme, so we’ll continue to practice it.

Today we’ll add in another essential part of web applications: user registration and login.

πŸ“‹ Django Music Project Review

  • What was one AHA! 😲 moment you had?
  • What did you spend the most time ⏲️ on?
  • What is something that you’d like to understand better πŸ˜•?

🎯 Project: Freeshelf

This is a 3-day assignment that you’ll work on all week. It is due on Thursday, June 24.

πŸ“š Django Freeshelf

Groups for this week

groups=[
  ['Shaune', 'Emily', 'Brian', 'Roan'],
  ['Robert', 'Quinten', 'Greg', 'Dee'],
  ['Wendy', 'Sara', 'Logan']
]

πŸ”– Resources

πŸ¦‰ Code

Back to home