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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:19:28+00:00 2026-06-11T05:19:28+00:00

New to python, and trying to use __unicode_ to render a string representation. The

  • 0

New to python, and trying to use __unicode_ to render a string representation. The code is part of Django model. How can I write __unicode__ of MyType so that in templates it output its representation as 123 - 123 South ....

class UsAddress(models.Model):
    #other fields
    zip = us_models.USPostalCodeField()
    country = models.CharField(max_length=2)
    phone = us_models.PhoneNumberField()

    def __unicode__(self):
        return  self.zip + self.country + self.phone


class MyType(models.Model):
    code = models.IntegerField()
    address = UsAddress

    def __unicode__(self):
        return str(self.code) + " - " + unicode(self.address) #self.address.__unicode__()

Output:

 <MyType: 219 - <class 'web.models.UsAddress'>>

EDIT

At least in my case, the problem was I didn’t model the relationship. So I added it to UsAddress.

mt = models.ForeignKey(MyType)
  • 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-11T05:19:30+00:00Added an answer on June 11, 2026 at 5:19 am

    Try this:

    class MyType(models.Model):
        code = models.IntegerField()
        address = UsAddress
    
        def __unicode__(self):
            return u'%s - %s' % (self.code, self.address)
    

    Here is the unicode method.

    Then, you can just use it in your template like this:

    <p>My object: {{ mytype_obj }}</p>
    

    The output will be:

    My object: 123 – 123 South ….

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

Sidebar

Related Questions

I am new to django and I am trying to use get_or_create model function
New to Python, have a simple, situational question: Trying to use BeautifulSoup to parse
I'm new to OpenCV and would like to use its Python binding. When trying
I'm brand new at Python and I'm trying to write an extension to an
i'm new to python , and trying to write a script in order to
I am pretty new to Django and trying to use django-social-auth in my Django
I am new to python (and this site); I am trying to write a
I'm new to Python and am trying to make use of it to parse
I'm very new to python, trying to use it to split the frames of
I am learning python and i am new bie. I am trying to use

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.