Skip to content

Commit 3574c3e

Browse files
committed
fix(alumni): add more years
1 parent 10afef4 commit 3574c3e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

alumni/fields/year.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ class ClassField(CustomIntegerChoiceField):
2929
C_2023 = 2023
3030
C_2024 = 2024
3131
C_2025 = 2025
32+
C_2026 = 2026
33+
C_2027 = 2027
34+
C_2028 = 2028
3235
CHOICES = (
3336
(OTHER, "Other (Please specify in comments)"),
3437
(C_2004, "Class of 2004"),
@@ -53,6 +56,9 @@ class ClassField(CustomIntegerChoiceField):
5356
(C_2023, "Class of 2023"),
5457
(C_2024, "Class of 2024"),
5558
(C_2025, "Class of 2025"),
59+
(C_2026, "Class of 2026"),
60+
(C_2027, "Class of 2027"),
61+
(C_2028, "Class of 2028"),
5662
)
5763

5864
DEFAULT_CHOICE = OTHER

0 commit comments

Comments
 (0)