Skip to content

Commit

Permalink
add more context to public comment condition labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Medrano authored and Xavier Medrano committed Dec 18, 2024
1 parent 71a58e9 commit 255c684
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lametro/models/cms.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,15 @@ def __str__(self):
("concluded", "Concluded events"),
]
COMMENT_CONDITION_CHOICES = [
("accepts_live_comment", "Events that accept live public comments"),
("accepts_comment", "Events that accept public comments when not live"),
("accepts_no_comment", "Events that do not accept public comments at all"),
(
"accepts_live_comment",
"Events that accept public comment before and during the meeting",
),
(
"accepts_comment",
"Events that accept public comment before but not during the meeting",
),
("accepts_no_comment", "Events that do not accept public comment"),
]

broadcast_conditions = ArrayField(
Expand Down

0 comments on commit 255c684

Please sign in to comment.