'Django Class Based view for a profile page
I want to use class based views to build a profile page. Are there any inbuilt views to achieve this. For eg: I have used auth_views for login and register.
Django auth.views doesnt contain a profile view. So I decided to create my own using django inbuilts for create update and delete tasks in the profile. Which class based view should I use to achieve this ?
Solution 1:[1]
Profile page is nothing more than DetailView - only difference is that object is an actual user profile. If you want to display current user detail page, just override get_object method and return user from request.session (or it's profile if this is different thing in your project).
Solution 2:[2]
Read https://docs.djangoproject.com/en/1.8/topics/class-based-views/generic-display/#built-in-class-based-generic-views and https://docs.djangoproject.com/en/1.8/ref/class-based-views/generic-editing/#generic-editing-views for generic views details. But for best understading of class based views read source code files in django.views.generic package.
Solution 3:[3]
From my own little experiment while trying to learn Django (just started)
Code snippet from base.html:
{% if user.is_authenticated %}
<a href="{% url 'logout' %}">{{user.username}} Logout -- </a>
<a href="{% url 'users:user_detail' user.pk %}">{{user.username}} Profile</a>
{% else %}
<a href=="{% url 'login' %}">Login</a>
{% endif %}
From my views.py
class UserDetailView(DetailView):
model = User # this is imported from django.contrib.auth.models
context_object_name = 'user_object'
template_name = 'users / user_detail.html'
From my user_detail.html page: (for above code snippet : The user variable is injected by the django.contrib.auth.context_processors.auth context processor)
{% if user == user_object %}
<h4>user and object are the same. Welcome {{ user_object }}</h4>
{% endif %}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | GwynBleidD |
| Solution 2 | Rajesh Kaushik |
| Solution 3 | Amitabh Suman |
