Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Hint: You can adjust the default video playback speed in your account settings.
Hint: You can set your subtitle preferences in your account settings.
Sorry! Looks like there’s an issue with video playback 🙁 This might be due to a temporary outage or because of a configuration issue with your browser. Please refer to our video player troubleshooting guide for assistance.

Building a Django User Management System (Summary)

Django is a versatile framework, and it does its best to help you with every possible task, including user management. It provides a lot of ready-to-use resources, but sometimes you need to extend them just a bit.

In this video course, you’ve learned how to:

  • Extend your Django application with a full set of user management features
  • Adjust the default Django templates to better suit your needs
  • Use Mailgun to send password reset emails
  • Add an option to log in with GitHub

This should provide you with a good starting point for your own amazing ideas. Real Python has several Django tutorials to help you along the way.

To learn more about Django and the concepts covered in this course, you can check out:

Download

Sample Code (.zip)

13.4 KB
Download

Course Slides (.pdf)

5.5 MB

theghia on Dec. 13, 2022

A very succint course, though it would have been nice to understand more on the code path('accounts/', include('django.contrib.auth.urls')), and what is happening here. I came across an error when I added a namespace to my users’ url.py file and was not able to figure it out until I went to the Django repo and have a deeper look at what the paths are doing and why they request certain templates.

Become a Member to join the conversation.