Skip to content

Commit 9214325

Browse files
authored
CWS: show "task overview" table on contest overview page in more cases (#1520)
This used to only be shown when submissions were allowed, but I think it makes more sense to show it whenever the task statement pages are visible.
1 parent 9f2c568 commit 9214325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cms/server/contest/templates/overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ <h2>{% trans %}General information{% endtrans %}</h2>
179179

180180

181181

182-
{% if actual_phase == 0 or actual_phase == 3 or participation.unrestricted or (0 <= actual_phase <= 3 and contest.allow_unofficial_submission_before_analysis_mode)%}
182+
{% if actual_phase >= 0 or participation.unrestricted %}
183183
<h2>{% trans %}Task overview{% endtrans %}</h2>
184184

185185
<table class="table table-bordered table-striped">

0 commit comments

Comments
 (0)