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

  • Home
  • SEARCH
  • 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 8621503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:50:09+00:00 2026-06-12T06:50:09+00:00

I’m having problems with customising the django comments framework. I need to add a

  • 0

I’m having problems with customising the django comments framework. I need to add a ‘company’ field. I’ve followed the documentation and not really getting anywhere. It’s not far from working because when i add COMMENTS_APP = ‘comments_app’ to my settings.py the ‘comments’ app dissapears from admin interface. When i try and write a comment it comes up with the company field where it asks for your email, url etc.

I’d like to be able to view all the comments in the admin panel along with the company field i’ve added.

Do i need to create a admin.py or have i just got something missing?

Here is my code for my customised comments app:

//MODELS

 from django.db import models
    from django.contrib.comments.models import Comment

    class CommentWithAddedFields(Comment):
        company = models.CharField(max_length=300)

//FORMS.py

from django import forms
from django.contrib.comments.forms import CommentForm
from comments_app.models import CommentWithAddedFields

class CommentFormWithAddedFields(CommentForm):
    company = forms.CharField(max_length=300)


    def get_comment_model(self):

        return CommentWithAddedFields


    def get_comment_create_data(self):

        data = super(CommentFormWithAddedFields, self).get_comment_create_data()
        data['company'] = self.cleaned_data['company']
        return data

//__init.py

from comments_app.models import CommentWithAddedFields
from comments_app.forms import CommentFormWithAddedFields

def get_model():
    return CommentWithAddedFields


def get_form():
    return CommentFormWithAddedFields

I have added the app in the my settings.py file and added COMMENTS_APP = ‘comments_app’ as i mentioned above.

Am I missed something?

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-06-12T06:50:10+00:00Added an answer on June 12, 2026 at 6:50 am

    Yes, you need to create an admin.py for your custom comments app if you want your model to appear in the django admin. You should be able to subclass the CommentsAdmin, and customize as required.

    from django.contrib import admin
    from django.utils.translation import ugettext_lazy as _, ungettext
    from django.contrib.comments.admin import CommentsAdmin
    from django.contrib.comments import get_model
    
    from comments_app.models import CommentWithAddedFields
    
    class MyCommentsAdmin(CommentsAdmin):
        # Same fieldsets as parent admin, but include 'company'
        fieldsets = (
            (None,
               {'fields': ('content_type', 'object_pk', 'site')}
            ),
            (_('Content'),
               {'fields': ('user', 'user_name', 'user_email', 'user_url', 'company', 'comment')}
            ),
            (_('Metadata'),
               {'fields': ('submit_date', 'ip_address', 'is_public', 'is_removed')}
            ),
         )
    
    # Only register the admin if the comments model is CommentWithAddedFields
    # The equivalent section in django.contrib.comments.admin is what prevents 
    # the admin from being registered when you set COMMENTS_APP = 'comments_app' 
    # in your settings file
    if get_model() is CommentWithAddedFields:
        admin.site.register(CommentWithAddedFields, MyCommentsAdmin)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I need a function that will clean a strings' special characters. I do NOT
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
In my XML file chapters tag has more chapter tag.i need to display chapters
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I'm having trouble keeping the paragraph square between the quote marks. In firefox the
I have thousands of HTML files to process using Groovy/Java and I need to
I need to clean up various Word 'smart' characters in user input, including but
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

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.