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 8204411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T07:53:40+00:00 2026-06-07T07:53:40+00:00

I need to allow administrators to manage permissions for models on my site. Groups,

  • 0

I need to allow administrators to manage permissions for models on my site. Groups, Users, and Permissions are doing a great job of this right now. However, I also need to allow the administrators to manage the permissions of non-authenticated users – Anonymous Users. The docs say that anonymous user’s group is always empty, so how can I allow administration of their permissions?

  • 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-06-07T07:53:42+00:00Added an answer on June 7, 2026 at 7:53 am

    It is strange to add permissions to anonymous users. Docs say:

    Django’s permission framework does not have a place to store
    permissions for anonymous users. However, it has a foundation that
    allows custom authentication backends to specify authorization for
    anonymous users. This is especially useful for the authors of
    re-usable apps, who can delegate all questions of authorization to the
    auth backend, rather than needing settings, for example, to control
    anonymous access.

    So you can set permissions to anon yuser, but with custom auth backend.
    It is sometimes better to use declarative permission check, using decorators on the views with the needed permissions, like:

    @permission_required('somemodel.can_add')
    def add_model(request):
    

    or leave it unrestricted for everyone(incl. anonymous user). Or some custom permission check..

    Or if you want to have permissions anyway, you can always create a dummy user, let’s say "AnonUser", to give it permissions, and then checking permissions to have something like:

    if not user.is_authenticated():
        dummy_user = User.objects.get(name="AnonUser")
        if dummy_user.has_perm("somepermission"):
            # bla bla bla
    

    but this is something I’d never use..

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

Sidebar

Related Questions

I have this regex working but now need to allow numbers without the decimal
I have some code that allows administrators to manage their organization's users/groups etc and
I need a way to allow administrators to delete a job in Quartz.NET. Are
I need allow registered front end users to add, remove images to image gallery.
I need to allow users to upload PDF documents that other users will read.
I need to allow users to select an assembly in much the same way
I have a need to allow my users to execute .NET code that they
I am building a web application that will need to allow users to save
I need to allow users to create accounts on my wiki but I need
I need to allow new users do a daily ftp mget of many files

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.