hello there
in my proj i have two different users
users A and users B
they have different options to use
how can i change my proj how if any user clicked on profile its own special profile shows up?
*both users inheriates User model
hello there
in my proj i have two different users
users A and users B
they have different options to use
how can i change my proj how if any user clicked on profile its own special profile shows up?
*both users inheriates User model
Have you tried anything, even if it didn’t work?. Its easier to assist when there is existing code. That way we can better understand your dilemma and offer guidance.
I’m assuming that what you actually mean here is that “user A” and “user B” are both instances of the User
model.
The profile models should each have a One-to-one relationship with User
. The easiest way to do this in the view is detect which Profile
model is assigned to the user, and create the link to the “edit profile” page to edit the proper profile model.
(Or, you could do that detection in the “edit profile” page to identify what form gets present.)
There are other ways of doing this as well. But as pointed out in the previous response, it would be a lot easier to identify them if you supplied the specific code you’re working with and what you’ve currently tried to do.
i tries this one and it doesnt work
class UserProfileView(LoginRequiredMixin,View):
def get(self , request ):
user = request.user
print(user)
if user.user_type == 'student':
student = Student.objects.get(user = user)
return render(request , 'accounts/student_user_profile.html' , {'student':student})
elif user.user_type == 'counselor':
counselor = Counselor.objects.get(user = user)
return render(request , 'accounts/counselor_user_profile.html' , {'counselor':counselor})
return redirect('home:home')
i did
thats not my problem
this is
class UserProfileView(LoginRequiredMixin,View):
def get(self , request ):
user = request.user
print(user)
if user.user_type == 'student':
student = Student.objects.get(user = user)
return render(request , 'accounts/student_user_profile.html' , {'student':student})
elif user.user_type == 'counselor':
counselor = Counselor.objects.get(user = user)
return render(request , 'accounts/counselor_user_profile.html' , {'counselor':counselor})
return redirect('home:home')
I’m not sure what your comment means here, but you are not doing what I’m recommending.
Please post the models you are using.
Also post the complete error message with the traceback you are receiving.
models.py
from django.db import models
from .manager import UserManager
from django.contrib.auth.models import AbstractBaseUser
import datetime
# base user model
class User(AbstractBaseUser):
STUDENT = 'student'
COUNSELOR = 'counselor'
USER_TYPE_CHOICES = [
(STUDENT, 'student'),
(COUNSELOR, 'counselor')
]
phone_number = models.CharField(max_length=11, unique=True)
full_name = models.CharField(max_length=100)
user_type = models.CharField(max_length=10 , choices=USER_TYPE_CHOICES ,default=STUDENT )
is_admin = models.BooleanField(default=False)
is_active = models.BooleanField(default=False)
created = models.DateTimeField(auto_now=True)
objects = UserManager()
USERNAME_FIELD = 'phone_number'
REQUIRED_FIELDS = [ 'full_name']
def __str__(self):
return f'{self.full_name} -active: {self.is_active} -admin: {self.is_admin} - user type: {self.user_type}'
def has_perm(self , perm , obj=None):
return True
def has_module_perms(Self, app_label):
return True
@property
def is_staff(self):
return self.is_admin
class Counselor(models.Model):
user = models.OneToOneField(User , on_delete=models.CASCADE , primary_key=True)
educational_background = models.CharField(max_length=200 )
student_manage_limit = models.SmallIntegerField( default=5)
def __str__(self):
return self.user.full_name
def add_student(self, student):
if self.students.count() < self.student_manage_limit:
self.students.add(student)
else:
raise ValueError("Student manage limit reached")
def current_student_count(self):
return self.students.count()
def can_manage_more(self):
return self.current_student_count()< self.student_manage_limit
class Student(models.Model):
educational_background_choices = [
('10' , 'دهم'),
('11' , 'یازدهم'),
('12' , 'دوازدهم'),
('graduated' , 'کنکوری')
]
field_choices = [
('experimental_sciences' , 'experimental sciences'),
]
user = models.OneToOneField(User , on_delete=models.CASCADE , primary_key=True)
educational_background = models.CharField(max_length=100 , choices=educational_background_choices , default='experimental_sciences')
field = models.CharField(max_length=30 , choices=field_choices , default='experimental_sciences')
counselor = models.ForeignKey(Counselor , on_delete=models.DO_NOTHING , null=True , blank=True, related_name='students')
def __str__(self):
return self.user.full_name
class OtpCode(models.Model):
phone_number = models.CharField(null= True , max_length=11)
code = models.CharField(max_length=6)
created = models.DateTimeField(auto_now=True)
def __str__(self):
return self.code
def is_valid(self):
return (datetime.datetime.now() - self.created).seconds < 300
and i keep redirecting to home page thats my problem
But what do you see on the server console for these requests?
Have you verified that the person logging in has the user_type
field set correctly?
In your view, you have print(user)
. What do you get if you add the line print(user.user_type)
?
How are you creating the user?
Your view assumes that the related object (Counselor
or Student
) currently exists. Have you verified that the correct object exists for that user
for that user_type
? (Where are those objects being created?)
Note: What I was pointing out is that you don’t necessarily need a field user_type
. You can check the existence of the related object using the hasattr
function. (See the docs at One-to-one relationships | Django documentation | Django)
(While it’s not necessary to have the user_type
field, there are circumstances where it’s better to have it than not, and so I’m not saying it’s wrong to have it. I’m only pointing out that in what you’ve presented here so far, I don’t see where you need to have it.)
when i print the user the user_type is counsolor and it works correctly but dont show the page the belongs to