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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:49:43+00:00 2026-05-28T06:49:43+00:00

I have a model defined as: class Feature(models.Model): content_type = models.ForeignKey(ContentType) user = models.ForeignKey(User,

  • 0

I have a model defined as:

class Feature(models.Model):
    content_type = models.ForeignKey(ContentType)
    user = models.ForeignKey(User, unique = True)
    object_id = models.PositiveIntegerField()
    description = models.TextField("Description", blank=False)
    content_object = generic.GenericForeignKey('content_type', 'object_id')

In the django admin site, the drop down for content_type shows all of the tables, but as their defined names, not the verbose names. How can I change this to show the pretty names instead of the coded names?

  • 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-28T06:49:44+00:00Added an answer on May 28, 2026 at 6:49 am

    Without changing the ContentType model, You can do this by customizing the ModelAdmin that you use for your Feature model. Specifically, you can override the formfield_for_foreignkey method that defines the field that is used for every foreign key on your model.

    You will have to define a custom ModelChoiceField as well, which overrides the normal labels used by the dropdown.

    In your admin.py:

    from django.contrib import admin
    from django.forms import ModelChoiceField
    from myproject.myapp.models import Feature
    
    class CustomContentTypeChoiceField(ModelChoiceField):
        def label_from_instance(self, obj):
            return "Pretty name for #%d" % obj.id
    
    class FeatureAdmin(admin.ModelAdmin):
        def formfield_for_foreignkey(self, db_field, request, **kwargs):
            if db_field.name == "content_type":
                return CustomContentTypeChoiceField(**kwargs)
            return super(FeatureAdmin, self).formfield_for_foreignkey(db_field, request, **kwargs)
    
    admin.site.register(Feature, FeatureAdmin)
    

    References:

    Customizing admin form fields: https://docs.djangoproject.com/en/1.3/ref/contrib/admin/#django.contrib.admin.ModelAdmin.formfield_for_foreignkey

    ModelChoiceFields: https://docs.djangoproject.com/en/1.3/ref/forms/fields/#modelchoicefield

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

Sidebar

Related Questions

I have a model defined like this: class UserDetail(models.Model): user = models.ForeignKey(User, db_index=True, unique=True,
I have a model defined as below: class Example(models.Model): user = models.ForeignKey(User, null=True) other
I have the following models defined: class Player(models.Model): Team = models.ForeignKey(Team) Name = models.CharField(max_length=200)
All, i have the following model defined, class header(models.Model): title = models.CharField(max_length = 255)
Let's say I have a class structure that is defined below: Class Item(models.Model): ...
I have a model field defined as follows: class Room(models.Model): ... ... is_course =
I have the following models defined: class Team(models.Model): Name = models.CharField(max_length=250) class Fixture(models.Model): HomeTeam
I have a model class defined as below: class Vehicle(models.Model): stock_number = models.CharField(max_length=6) vin
I have the following data model class defined: @PersistenceCapable public class TestSerializableModelObj { @Persistent(serialized=true,
I have a simple model that is defined as: class Article(models.Model): slug = models.SlugField(max_length=50,

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.