We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10afef4 commit 3574c3eCopy full SHA for 3574c3e
1 file changed
alumni/fields/year.py
@@ -29,6 +29,9 @@ class ClassField(CustomIntegerChoiceField):
29
C_2023 = 2023
30
C_2024 = 2024
31
C_2025 = 2025
32
+ C_2026 = 2026
33
+ C_2027 = 2027
34
+ C_2028 = 2028
35
CHOICES = (
36
(OTHER, "Other (Please specify in comments)"),
37
(C_2004, "Class of 2004"),
@@ -53,6 +56,9 @@ class ClassField(CustomIntegerChoiceField):
53
56
(C_2023, "Class of 2023"),
54
57
(C_2024, "Class of 2024"),
55
58
(C_2025, "Class of 2025"),
59
+ (C_2026, "Class of 2026"),
60
+ (C_2027, "Class of 2027"),
61
+ (C_2028, "Class of 2028"),
62
)
63
64
DEFAULT_CHOICE = OTHER
0 commit comments