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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:31:22+00:00 2026-05-11T17:31:22+00:00

django’s manager docs has a paragraph overwritten with DO NOT FILTER AWAY ANY RESULTS

  • 0

django’s manager docs has a paragraph overwritten with DO NOT FILTER AWAY ANY RESULTS IN THIS TYPE OF MANAGER SUBCLASS, but in the following text only mentions get_query_set()

Is it save to filter in all(), get(), filter(), exclude()?

The reason why I want to do that: I want for the automatic Manager as it gives my the power to control, what rows are send to a template-tag as described in b-list: Write better template tags

Would this code be OK?

class ArticleMananger(models.Manager):
    def get_query_set(self):
        return super(ArticleMananger, self).get_query_set()
    def all(self): 
        return super(ArticleMananger, self).filter(published=True)   
    def filter(self,  **kwargs):
        return super(ArticleMananger, self).filter(published=True).filter(**kwargs) 
    .... 

Edit: If someone votes down, it would be nice or just fair to explain why. What is wrong about this question?

  • 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-11T17:31:22+00:00Added an answer on May 11, 2026 at 5:31 pm

    I did some test and will answer my own question:

    Do not filter in all(),… too!

    I just tried it out. It breaks parts of the admin interface. From a technical point of view it could be possible to overwrite / extend template/admin/apps/* to use another manager (ie via own tags), but I come to the conclusion, that it wont worth the work. Instead I will rewrite my tags to something like this:

    def render(self, context):
        if hasattr(self.model, 'publicmgr'):
            context[self.varname] = self.model.publicmgr.all().order_by(self.by)[:self.num]
        else:
            context[self.varname] =   self.model._default_manager.all().order_by(self.by)[:self.num]
        return  ''
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Django urlize docs say: The urlize filter also takes an optional parameter autoescape .
Django auth User model has a date_joined DateTimeField . Could this be used to
Django has the StackedInline-Feature for the Admin-Backend - is there any equivalent for django.forms?
Django has a built in template filter than can process restructured text. Is it
Django auth has username and first_name fields. But username has field option unique=True. This
Django has the concept of filters that allow you to format values in views.
Django has a decorator function called @transaction.commit_manually . I am attempting to pass a
Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField
Django testrunner is not loading fixtures out of media app fixtures/ directory. How can
Django newbie here, I need to do a count over a certain filter in

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.