Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resubmit #269

Merged
merged 3 commits into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading