Momentum logo
Team 12 Classroom

๐ŸŒฆ๏ธ ๐Ÿƒ ๐ŸŒธ ๐ŸŒฑ Spring of Django ๐ŸŒฆ๏ธ ๐Ÿƒ ๐ŸŒธ ๐ŸŒฑ

Posted on May 9th, 2022

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. This will allow us to create users for our application, let them log in (and out) and associate data with specific users.

๐Ÿ“‹ 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?
  • ๐Ÿ“ What are three goals that you have set for yourself for this next assignment?

๐ŸŽฏ Project: Django Freeshelf

This is a 3-day assignment that youโ€™ll work on this week. It is due on Thursday Morning, May 12. We will do end-of-phase presentations in the afternoon.

๐Ÿ“š Django Freeshelf

๐Ÿ”– Resources

Authentication, Registration, and the User Model in Django

๐Ÿฆ‰ Code & Notes

Back to home