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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:51:37+00:00 2026-05-28T04:51:37+00:00

A noob question, I’m afraid. I have a database with several classes, among them

  • 0

A noob question, I’m afraid. I have a database with several classes, among them the class picture and page:

class Picture(models.Model):
    picture_uuid = models.CharField(max_length=36)

class Page(models.Model):
    page_uuid = models.CharField(max_length=36)
    pictures = models.ManyToManyField(Picture)

Creating new pictures entries in my database is straight forward:

newPic = Picture.objects.create(picture_uuid="SAMPLE-UUID")
newPic2 = Picture.objects.create(picture_uuid="SAMPLE2-UUID")
newPic3 = Picture.objects.create(picture_uuid="SAMPLE3-UUID")

etc.

However, I have no idea how to add these pictures to a certain page:

newPage = Page.objects.create(page_uuid="SAMPLE-PAGE-UUID", pictures= … )

What if I wanted to achieve this programatically, i.e. adding my three pictures to this newPage?

  • 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-28T04:51:38+00:00Added an answer on May 28, 2026 at 4:51 am

    Just do it in the next statement:

    newPage = Page.objects.create(page_uuid="SAMPLE-PAGE-UUID")
    newPage.pictures.add(newPic, newPic2, newPic3)
    

    In the docs

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

Sidebar

Related Questions

(pardon the noob question in advance) I have 4 classes: class Person {}; class
Noob question. I have this situation where I have these objects: class Address {
A noob question. I'm putting together my first database and have the following design
Noob question (probably). I have a class with a var textFieldObjets:Textfield in my class
Noob Question here. I have created and successfully added an additional Page Layout to
Noob question, apologies. I'm compiling Java in Windows Vista's command-line and have so many
Noob question... class msgbox: def __init__(self, lbl_msg = '', dlg_title = ''): self.wTree =
PowerShell noob question here. I have groups of servers that are listed in separate
Absolute noob question. I have a form <form> <input type=text id=cars name=cars/> </form> When
another noob question regarding F#. If I have the following code... let ExeC =

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.