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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:05:52+00:00 2026-05-27T14:05:52+00:00

I am sharing objects between different sites using the Django-sites framework. This works fine

  • 0

I am sharing objects between different sites using the Django-sites framework. This works fine because I was able to define a many-to-many relationship within my models.

However, while retrieving the comments (Django-comments) for the objects using the template tag ‘render_comment_list’, I only get those comments which where posted in that particular site. This is expected, but I would like also to get those other comments that were posted for that object which is shared among multiple sites.

Digging into the code of Django-comments, it seems that this is the method causing the ‘problem’:

def get_query_set(self, context):
    ctype, object_pk = self.get_target_ctype_pk(context)
    if not object_pk:
        return self.comment_model.objects.none()

    qs = self.comment_model.objects.filter(
        content_type = ctype,
        object_pk    = smart_unicode(object_pk),
        site__pk     = settings.SITE_ID,
    )

My questions are:

  • What would be the easiest way to change the behavior so the template tag ‘render_comment_list’ displays all the comments for an object but not just the ones for a particular site?
  • Do I need to create another template tag and copy & paste 99% of the Django-comments template tag code?

Thanks

  • 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-27T14:05:52+00:00Added an answer on May 27, 2026 at 2:05 pm

    You don’t have to copy and past 99% of the template tag code, just subclass RenderCommentListNode and override the get_queryset_method where you identified the problem. Then copy the render_comment_list function, but use your child class.

    class RenderCommentListNodeAllSites(RenderCommnetListNode):
        def get_query_set(self, context):
            ctype, object_pk = self.get_target_ctype_pk(context)
            if not object_pk:
                return self.comment_model.objects.none()
    
            qs = self.comment_model.objects.filter(
                content_type = ctype,
                object_pk    = smart_unicode(object_pk),
            )
    
    def render_comment_list_all_sites(parser, token):
        return RenderCommentListNodeAllSites.handle_token(parser, token)
    register.tag(render_comment_list_all_sites)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My app has the ability of sharing its content between different instances of the
What would be the best practice for sharing localization object (in this case ResourceBundle,
After looking at other questions related to sharing solutions between VS 2005 and VS
What is a good pattern for sharing data between related views?. I have an
To share a state(e.g. user) between a module in django people sometime use thread
We are requiring to share some information between 2 different iPhone applications which are
Note: I don't talk about sharing variables between Activities or the need to save
Parsing Google Plus JSON objects Using C# and Newtonsoft.Json library how one can parse
I have a Server/Client project with WCF communications and sharing a dll between both
I have a question about sharing data between views, hopefully it's not too basic.

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.