Skip to content

Commit

Permalink
Move status further up in the model for convenience
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondberg committed Apr 6, 2024
1 parent a760474 commit 1df87ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chipy_org/apps/meetings/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,9 @@ def __str__(self):
help_text="This will be the public title for your talk.", max_length=MAX_LENGTH
)
presenters = models.ManyToManyField(Presenter, blank=True)
status = models.CharField(
max_length=50, choices=StatusChoice.ALL, null=True, blank=True, default="submitted"
)
meeting = models.ForeignKey(
Meeting,
blank=True,
Expand Down Expand Up @@ -322,9 +325,6 @@ def __str__(self):
)
slides_link = models.URLField(blank=True, null=True)
start_time = models.DateTimeField(blank=True, null=True)
status = models.CharField(
max_length=50, choices=StatusChoice.ALL, null=True, blank=True, default="submitted"
)

objects = TopicsQuerySet.as_manager()

Expand Down

0 comments on commit 1df87ed

Please sign in to comment.