Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 620079
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:43:29+00:00 2026-05-13T18:43:29+00:00

I have Admin User extended/subclassed by Teacher class. How to prevent Teachers from seeing

  • 0

I have Admin User extended/subclassed by Teacher class.

How to prevent Teachers from seeing and changing other Teachers’ profile data and Teachers are able to change their own records/rows only? Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:43:29+00:00Added an answer on May 13, 2026 at 6:43 pm

    I’m not sure I understand exactly what you’re trying to do, but if what’s in your mind is having the built-in user administration pages working slightly differently for Teacher users, then I believe you just have to extend UserAdmin, and override the queryset method.

    class TeacherSpecificUserAdmin(UserAdmin):
      def queryset(self, request):
        if request.user.is_teacher():
          return Teacher.objects.filter(pk=request.user.pk)
        return UserAdmin.queryset(self, request)
    

    That will take care of disallowing Teachers to edit or delete other records, because if you look in the ModelAdmin code, change_view and delete_view method use the queryset returned from queryset method to get the object to change or delete.

    One more tweak is necessary, because the view used to change the password in UserAdmin doesn’t use the same system as the others views to get the object to change. Just override it in your new class :

    ...
    def user_change_password(self, request, id):
      if request.user.is_teacher() and request.user.pk != int(id):
        # PermissionDenied is in django.core.exceptions
        raise PermissionDenied
      return UserAdmin.user_change_password(self, request, id)
    ...
    

    After that, you just have to prevent Teachers to add new users, or delete their own record. Do that either using the default django’s permission framework, or by overriding has_add_permission and has_delete_permission methods.

    Have a look in the ModelAdmin source code if you want more info (in contrib/admin/options.py).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have extended Django's User Model using a custom user profile called UserExtension .
I have a requirement for an admin user to set up an export directory
So you have a String that is retrieved from an admin web UI (so
I recently extended with UserProfile so my admin.py looks like this: from django.contrib import
Is it dangerous to have your admin interface in a Django app accessible by
Okay, my dilemma is this. I have an admin page that I use to
We have an app with an extensive admin section. We got a little trigger
I have a namespaced controller for some admin functionality. My create form does not
I have to build small (for now) admin app in Silverlight2, and would like
I have a .NET webforms front end that allows admin users to upload two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.