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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T02:34:51+00:00 2026-05-20T02:34:51+00:00

I’m creating a little calendar app in Django. I have two model classes; Calendar

  • 0

I’m creating a little calendar app in Django. I have two model classes; Calendar and Event. An event can be in multiple calendars. Because of this I’m using a ManyToMany relation.

This is my model

from django.db import models

class Calendar(models.Model):
    title = models.CharField(max_length = 255)

    def __unicode__(self):
        return self.title

class Event(models.Model):
    title = models.CharField(max_length = 255)
    start_date = models.DateField()
    end_date = models.DateField(blank = True, null = True)
    location = models.CharField(blank = True, max_length = 255)
    description = models.TextField(blank = True)
    important = models.BooleanField(default = False)
    calendar = models.ManyToManyField(Calendar)

How can I get a queryset with all events from a specific calendar?

  • 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-20T02:34:52+00:00Added an answer on May 20, 2026 at 2:34 am

    You would use the .event_set attribute on an instance of a Calendar record. Like this:

    # create two calendars
    one = models.Calendar.objects.create(title='calendar one')
    two = models.Calendar.objects.create(title='calendar two')
    
    # attach event 1 to both calendars
    event = models.Event.objects.create(title='event 1', start_date='2011-11-11')
    one.event_set.add(event)
    two.event_set.add(event)
    
    # attach event 2 to calendar 2
    two.event_set.add(models.Event.objects.create(title='event 2', start_date='2011-11-11'))
    
    # get and print all events from calendar one
    events_one = models.Calendar.objects.get(title='calendar one').event_set.all()
    print [ event.title for event in events_one ] 
    # will print: [u'event 1']
    
    # get and print all events from calendar two
    events_two = models.Calendar.objects.get(title='calendar two').event_set.all()
    print [ event.title for event in events_two ] 
    # will print: [u'event 1', u'event 2']
    

    models.Calendar.objects.get(title=’two’).event_set.all()

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

Sidebar

Related Questions

No related questions found

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.