You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="info" title="Programming languages that contestants can use to solve this task.
136
136
If none are selected, all contest languages are allowed.
137
-
Otherwise, only the selected languages (which must be a subset of contest languages) are allowed."></span>
137
+
Otherwise, only the selected languages are allowed."></span>
138
138
Allowed programming languages
139
139
</td>
140
140
<tdclass="wrapping-options">
141
141
{% for lang in LANGUAGES %}
142
-
<label><inputtype="checkbox" name="allowed_languages" value="{{ lang.name }}" {{ "checked" if task.allowed_languages is none or lang.name in (task.allowed_languages or []) else "" }}>{{ lang.name }}</label>
142
+
<label><inputtype="checkbox" name="allowed_languages" value="{{ lang.name }}" {{ "checked" if task.allowed_languages is not none and lang.name in task.allowed_languages else "" }}>{{ lang.name }}</label>
0 commit comments