Momentum logo
Team 10 Classroom

🍁 🧣 πŸ«– πŸ‚ November of Django πŸ‚ πŸ«– 🧣 🍁

Posted on Nov 8th, 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, November 11.

πŸ“š Django Freeshelf

πŸ”– Resources

πŸ¦‰ Code

Back to home