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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:01:37+00:00 2026-05-26T10:01:37+00:00

Still fairly new to django and python. I’ve defined two nearly identical models that

  • 0

Still fairly new to django and python.

I’ve defined two nearly identical models that inherit from a base class:

class addressbook(models.Model):
    name = models.CharField(max_length=50)

class company(addressbook):
    address = models.CharField(max_length=50)

class contact(addressbook):
    telephone - models.CharField(max_length=30)

I want to do very similar things with company and contact objects. However in my templates it looks like I need to use separate templates for each object since to access the members in the object I have to use something like

{{ blah.name }} {{ blah.address}}

in one but

{{ blah.name }} {{ blah.telephone}} 

in the other.

All this repetition makes me suspicious. Is there some python or django template syntax that would allow me to reuse a single template (with some sort of built in intelligence) with both models?

Thanks for your help!
W.

  • 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-26T10:01:38+00:00Added an answer on May 26, 2026 at 10:01 am

    If you create a property in your models that indicates the specific field of interest for each type, that would let you use one variable in a template. Example:

    class addressbook(models.Model):
        name = models.CharField(max_length=50)
    
    class company(addressbook):
        address = models.CharField(max_length=50)
    
        @property
        def display_field(self):
            return self.address
    
    class contact(addressbook):
        telephone = models.CharField(max_length=30)
    
        @property
        def display_field(self):
            return self.telephone
    

    Now in your template you can use {{ blah.display_field }} and it will print the value you want, depending on the object type.

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

Sidebar

Related Questions

Still fairly new to django and python... I've defined two forms as follows: class
I'm still fairly new to Python, and my OO experience comes from Java. So
Im still fairly new to Django, so please explain things with that in mind.
I'm still fairly new to Python and I'm trying to get used to its
So I am still fairly new to all of this, that is coding, OS
I'm fairly new to C# and I come from a Ruby background. I still
I'm still fairly new to PInvoke calls, so I'm hoping that someone out there
I'm still fairly new to T-SQL and SQL 2005. I need to import a
I'm still fairly new to ASP.NET development so bear with me. I'm going to
I am still fairly new to EDI, and learning it on a new job.

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.