We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96143b3 commit 4a2ffb6Copy full SHA for 4a2ffb6
2 files changed
cms/server/admin/static/aws_style.css
@@ -380,7 +380,15 @@ table.TaskTypeOptions {
380
margin: 5px 0px;
381
}
382
383
+table td.wrapping-options {
384
+ display: flex;
385
+ flex-wrap: wrap;
386
+ width: 100%;
387
+}
388
389
+table td.wrapping-options label {
390
+ margin-right: 15px;
391
392
393
394
/* TODO */
cms/server/admin/templates/contest.html
@@ -40,7 +40,7 @@ <h1>Contest configuration</h1>
40
All the allowed languages must have task support, for example in managed tasks."></span>
41
Allowed programming languages
42
</td>
43
- <td>
+ <td class="wrapping-options">
44
{% for lang in LANGUAGES %}
45
<label><input type="checkbox" name="languages" value="{{ lang.name }}" {{ "checked" if lang.name in contest.languages else "" }}>{{ lang.name }}</label>
46
{% endfor %}
0 commit comments