We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc9e824 commit 493f8adCopy full SHA for 493f8ad
1 file changed
cms/server/contest/templates/communication.html
@@ -41,8 +41,10 @@ <h2>{{ _("Questions") }}</h2>
41
<div class="controls">
42
<input type="text" name="question_subject" id="input_subject" class="input-xlarge" maxlength="50" list="task_names_list" autocomplete="off">
43
<datalist id="task_names_list">
44
- {% for task in contest.tasks %}
+ {% if actual_phase >= 0 %}
45
+ {% for task in contest.tasks %}
46
<option value="{{ task.name }}">
47
+ {% end %}
48
{% end %}
49
</datalist>
50
</div>
0 commit comments