Skip to content

Commit

Permalink
Merge pull request #269 from ZdruzenieSTROM/resubmit
Browse files Browse the repository at this point in the history
Resubmit
  • Loading branch information
kovacspe authored Nov 12, 2023
2 parents 300f2d1 + 2fe026b commit e71c9de
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions competition/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,13 @@ def can_submit(self):
max_late_tag_value = datetime.timedelta(0)
return now() < self.deadline + max_late_tag_value

@property
def can_resubmit(self):
late_flag = self.get_actual_late_flag()
if late_flag:
return late_flag.can_resubmit
return False

def get_actual_late_flag(self) -> Optional[LateTag]:
"""
Vráti late flag, ktorý má byť v tomto okamihu priradený riešeniu,
Expand Down
4 changes: 4 additions & 0 deletions competition/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ def get_series_num_solutions(self, obj):
class SeriesWithProblemsSerializer(ModelWithParticipationSerializer):
problems = ProblemSerializer(many=True)
can_submit = serializers.SerializerMethodField('get_can_submit')
can_resubmit = serializers.SerializerMethodField('get_can_resubmit')

class Meta:
model = models.Series
Expand All @@ -271,6 +272,9 @@ class Meta:
def get_can_submit(self, obj):
return obj.can_submit

def get_can_resubmit(self, obj):
return obj.can_resubmit

def get_event(self, obj):
return obj.semester

Expand Down

0 comments on commit e71c9de

Please sign in to comment.