Django: Getting Started Transcripts
Chapter: Introducing the Django Web Framework
Lecture: Built-in user management
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
Users are just data, but their data with a whole bunch of extra things you have to do. Thankfully, Django provides tools for you to take care of the
0:08
most common user management tasks. It provides a registration framework for signing users up and managing their passwords,
0:15
an authentication framework for dealing with users logging into and out of your site,
0:21
an authorization framework to determine what a user is allowed to see and provides built in decorators, so all you need to ensure a view is secure
0:29
is a single line of code.