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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:13:01+00:00 2026-05-13T11:13:01+00:00

I made some model classes with pets types: Parrot, Rabbit, Cat, Dog and i

  • 0

I made some model classes with pets types: Parrot, Rabbit, Cat, Dog and i need make model
Shop, where one field will be related for few of this models. This field will show what sells in shop.
Can i make relation beetween one model object to few model classes?

If i can’t, how i need change my scheme?

ex:

1 Shop1 [Parrot, Rabbit]

2 Shop2 [Cat, Dog, Rabbit]

  • 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-13T11:13:02+00:00Added an answer on May 13, 2026 at 11:13 am

    If I understand your question correctly, you have created model classes representing different types of pets, and you want to associate individual shops with a number of those classes.

    I’m assuming your pet model definitions look something like this:

    class Parrot(models.Model):
        pining_for_fjords = models.BooleanField(default=True)
    

    You could do this using contenttypes:

    from django.contrib.contenttypes.models import ContentType
    class Shop(models.Model):
        pet_types = models.ManyToManyField(ContentType) 
    

    parrot_type = ContentType.objects.get(app_label="myapp", model="parrot")
    
    // ManyToManyFields need to be added to already saved models
    my_shop = Shop.objects.create()
    my_shop.pet_types.add(parrot_type)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 270k
  • Answers 270k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer How I would do it: split value in 'map' by… May 13, 2026 at 1:32 pm
  • Editorial Team
    Editorial Team added an answer Two states per flag and 10 flags means 2^10 =… May 13, 2026 at 1:32 pm
  • Editorial Team
    Editorial Team added an answer Connecting your site user accounts with Facebook accounts is possible… May 13, 2026 at 1:32 pm

Related Questions

I'm trying to figure out the best way to make an AJAX call to
I'm considering using Django for a project I'm starting (fyi, a browser-based game) and
In RC1 the behavior of the template for creating a view changed. As explained
My current architecture is based around my entities being simple containers for data with
To give an example of the kind of request that I can't figure out

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.