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.

Implementing Django View Authorization

Here are additional resources about Python decorators and Django user management:

00:00 Implementing Django View Authorization. Creating a Django view with authorization is a matter of inspecting the HttpRequest.user object and seeing if the user is allowed to visit your page.

00:15 What do you do if the user isn’t logged in or doesn’t have access? If the user isn’t logged in, then it would be nice to send them to the login page and then when they’re done logging in, bring them back to where they were. Doing so involves a fair amount of logic, but luckily Django comes with some tools to help you do it quickly.

00:35 Restricting Views to Logged-in Users. Django supports different ways of controlling what users can see and do. It includes a full mechanism for groups and permissions and a lighter-weight system based on users’ accounts. This course will focus on the latter.

00:53 Python has a feature called decorators. A decorator is a way of wrapping a function with another function. Django uses these decorators to help enforce authentication. For more about how decorators work, check out the Primer on Python Decorators.

01:11 In Django, you use decorators to wrap your view. The decorator then gets called before your view and can stop your view from being called if necessary. This is useful for authentication as it checks whether to let a user actually visit the view. Here’s the syntax.

01:47 This code shows the use of the @login_required decorator. When the private_place() view function is called, the Django login_required() wrapper function is called first. The decorator checks whether a user is authenticated and if they aren’t, it sends them to the login page.

02:05 The login page URL is parameterized with the current URL so it can return the visitor to the initial page. To see the @login_required decorator in action, add this code to core/views.py.

02:28 And register the associated URL in Blog/urls.py.

02:39 These examples show how to restrict a function-based view. If you’re using class-based views, then Django provides a LoginRequired mixin to achieve the same result.

03:12 Until now, you’ve been using the admin site’s authentication mechanism. This only works if you’re going to the admin site. If you go there and log in, you’ll be able to visit the /private_place/ URL seen onscreen now.

03:27 However, if you go straight to the /private_place/ without logging in, then you’ll get an error. Django comes with tools for authenticating, but it doesn’t know what your website looks like, so it doesn’t ship with a regular login page.

03:43 This Real Python article showed how to create a login template. We’ll now have to do this for the blog project as well. Firstly, add the authorization URLs to Blog/urls.py.

04:05 This allows you to take advantage of all of Django’s built-in authentication views. You’ll also need a corresponding login template. Create a registration/ subfolder in the templates/ folder, and then create login.html inside it.

04:57 The login redirect will now work correctly when you visit the /private_place/ URL. Additionally, by adding django.contrib.auth.urls, you now have /accounts/logout/ available as well, as seen onscreen here.

05:18 Now that you know how to restrict views to logged-in users, in the next section you’ll see how to fine-tune this by restricting it to specific user roles.

Manu on March 24, 2021

Can you make Group & Permission based Authorization as well?

Toluwalemi on March 25, 2021

@Manu Yes you can

Become a Member to join the conversation.