Changes between Initial Version and Version 1 of Ticket #32414


Ignore:
Timestamp:
Feb 3, 2021, 10:48:47 PM (3 years ago)
Author:
Douglas Franklin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32414 – Description

    initial v1  
    1111class CalendarEvent(models.Model):
    1212   profile = models.ForeignKey(Profile, on_delete=models.CASCADE)
    13    attendees = models.ManyToManyField(Profile, on_delete=models.CASCADE)
     13   attendees = models.ManyToManyField(Profile, blank=True, related_name="attending_calendar_events")
    1414}}}
    1515
Back to Top