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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:15:44+00:00 2026-05-12T06:15:44+00:00

Greetings, I have these 2 models: from django.db import models class Office(models.Model): name =

  • 0

Greetings, I have these 2 models:

from django.db import models

class Office(models.Model):
    name = models.CharField(max_length=30)
    person = models.CharField(max_length=30)
    phone = models.CharField(max_length=20)
    fax = models.CharField(max_length=20)
    address = models.CharField(max_length=100)
    def __unicode__(self):
            return self.name



class Province(models.Model):
    numberPlate = models.IntegerField(primary_key=True)
        name = models.CharField(max_length=20)
    content = models.TextField()
    office = models.ForeignKey(Office)
    def __unicode__(self):
            return self.name

I want to be able to select several Offices for Provinces, which is a one to many model. Here is my admin.py:

from harita.haritaapp.models import Province, Office
from django.contrib import admin


class ProvinceCreator(admin.ModelAdmin):
        list_display = ['name', 'numberPlate','content','office']

class OfficeCreator(admin.ModelAdmin):
        list_display = ['name','person','phone','fax','address']


admin.site.register(Province, ProvinceCreator)
admin.site.register(Office, OfficeCreator)

Right now, I am able to select one Office per Province at the admin panel while creating a new Province but I want to be able to select more than one. How can I achieve this?

Regards

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

    I’m not sure if I’m misunderstanding you, but your models currently say “an office can be associated with many provinces, but each province may only have one office”. This contradicts what you want. Use a ManyToMany field instead:

    class Province(models.Model):
        numberPlate = models.IntegerField(primary_key=True)
        name = models.CharField(max_length=20)
        content = models.TextField()
        office = models.ManyToManyField(Office)
        def __unicode__(self):
            return self.name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Greetings, I have a particular object which can be constructed from a file, as
Greetings: I have put together a RESTful web service in .NET 3.5 that takes
Greetings. I have been looking at Literate Programming a bit now, and I do
Greetings! If I have XML such as this: <Root> <AlphaSection> . . . </AlphaSection>
Greetings! I have some XML like this: <Root> <AlphaSection> . . . </AlphaSection> <BetaSection>
Greetings! I have an XML value that I'd like to use as a boolean
Greetings! I have a DropDownList within a FormView which are bound to XmlDataSources: <asp:FormView
Greetings, I have data stored on mysql with delimiter , in 1 table. I
Greetings! I have some XML like this: <Root> <MainSection> <SomeNode>Some Node Value</SomeNode> <SomeOtherNode>Some Other
Greetings, Apologies in advance that I have not researched this toughly enough to answer

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.