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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T17:34:01+00:00 2026-06-03T17:34:01+00:00

Is it possible to group models from different apps into 1 admin block? For

  • 0

Is it possible to group models from different apps into 1 admin block?

For example, my structure is

project/
  review/
    models.py -  class Review(models.Model):
  followers/
    models.py -  class Followers(models.Model):
    admin.py 

In followers/admin.py, I call

 admin.site.register(Followers)
 admin.site.register(Review)

This is to group them inside 1 admin block for administrators to find things easily.

I tried that, but Review model isn’t showing up inside Followers admin block and I couldn’t find documentation about this.

  • 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-03T17:34:03+00:00Added an answer on June 3, 2026 at 5:34 pm

    Django Admin groups Models to admin block by their apps which is defined by Model._meta.app_label. Thus registering Review in followers/admin.py still gets it to app review.

    So make a proxy model of Review and put it in the ‘review’ app

    class ProxyReview(Review):
        class Meta:
            proxy = True    
            # If you're define ProxyReview inside review/models.py,
            #  its app_label is set to 'review' automatically.
            # Or else comment out following line to specify it explicitly               
            # app_label = 'review'
    
            # set following lines to display ProxyReview as Review
            # verbose_name = Review._meta.verbose_name
            # verbose_name_plural = Review._meta.verbose_name_plural
    
    
    # in admin.py
    admin.site.register(ProxyReview)
    

    Also, you could put Followers and Review to same app or set same app_label for them.

    Customize admin view or use 3rd-part dashboard may achieve the goal also.

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

Sidebar

Related Questions

I have a couple of Django models set up like this: class Group(models.model): name
Is it possible to copy the value of a group into another one within
I have these models: class App(models.Model): name = models.CharField(max_length=100) class ProjectA(models.Model): name = models.CharField(max_length=100)
I have separate apps with a foreign key from a model in one model
I got this Doctrine query: select upper(substring(e.name, 1, 1)) first_letter from Application\Models\Exercise e group
I'm trying to come up with the largest possible group of friends that would
It is possible to group some fields in the edit form? I would like
Possible Duplicate: Retrieving the last record in each group I have two tables set
is possible do a case in a group by? similar to this: select *
Is it possible to apply (and remove) Windows group policy settings using .NET? I

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.