Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Odevzdávací Systém MO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Mareš
Odevzdávací Systém MO
Merge requests
!13
Tabulky řešení
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Tabulky řešení
jirka/solutions-table
into
devel
Overview
44
Commits
8
Changes
10
All threads resolved!
Hide all comments
Merged
Tabulky řešení
Jiří Setnička
requested to merge
jirka/solutions-table
into
devel
Jan 10, 2021
Overview
44
Commits
8
Changes
6
All threads resolved!
Hide all comments
Tabulka všech řešení pro kolo / soutěžní místo
Tabulka řešení jedné úlohy pro kolo / soutěžní místo
Zobrazení soutěžních míst na stránce kola + rozklik na podstránku soutěžního místa
Upravení seznamu účastníků aby fungoval i pro soutěžní místo
0
0
Merge request reports
Compare
version 1
version 6
11dd42c5
Jan 10, 2021
version 5
d237384f
Jan 10, 2021
version 4
b71cf09d
Jan 10, 2021
version 3
e967df93
Jan 10, 2021
version 2
08f7a4fc
Jan 10, 2021
version 1
2ff3f5e2
Jan 10, 2021
devel (base)
and
version 5
latest version
e077e427
8 commits,
Jan 10, 2021
version 6
11dd42c5
8 commits,
Jan 10, 2021
version 5
d237384f
7 commits,
Jan 10, 2021
version 4
b71cf09d
7 commits,
Jan 10, 2021
version 3
e967df93
7 commits,
Jan 10, 2021
version 2
08f7a4fc
7 commits,
Jan 10, 2021
version 1
2ff3f5e2
7 commits,
Jan 10, 2021
Show latest version
6 files
+
59
−
57
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
mo/web/templates/org_contest.html
+
12
−
12
View file @ d237384f
Edit in single-file editor
Open in Web IDE
Show full file
@@ -16,7 +16,7 @@
<tr><td>
Název
<td>
{{ round.name }}
<tr><td>
Oblast
<td><a
href=
'{{ url_for('
org_place
',
id=
contest.place.place_id)
}}'
>
{{ contest.place.name }}
</a>
{% if site %}
<tr><td>
Soutěžní místo
<
/td><
td><a
href=
'{{ url_for('
org_place
',
id=
site.place_id)
}}'
>
{{ site.name }}
</a>
</td></tr>
<tr><td>
Soutěžní místo
<td><a
href=
'{{ url_for('
org_place
',
id=
site.place_id)
}}'
>
{{ site.name }}
</a>
{% endif %}
<tr><td>
Stav
<td
class=
'rstate-{{round.state.name}}'
>
{{ round.state.friendly_name() }}
</table>
@@ -35,12 +35,12 @@
{% if places_counts %}
<table
class=
data
>
<thead>
<tr><th>
Místo
<
/th><
th>
Počet účastníků
</th></tr>
<tr><th>
Místo
<th>
Počet účastníků
</thead>
{% for (place, count) in places_counts %}
<tr>
<td><a
href=
"{{ url_for('org_contest', id=contest.contest_id, site_id=place.place_id) }}"
>
{{ place.name }}
</a>
</td>
<td>
{{ count }}
</td>
<td><a
href=
"{{ url_for('org_contest', id=contest.contest_id, site_id=place.place_id) }}"
>
{{ place.name }}
</a>
<td>
{{ count }}
</tr>
{% endfor %}
</table>
@@ -54,17 +54,17 @@
<table
class=
data
>
<thead>
<tr>
<th>
Kód
</th>
<th>
Název
</th>
<th>
Odevzdaná řešení
</th>
<th>
Akce
</th>
<th>
Kód
<th>
Název
<th>
Odevzdaná řešení
<th>
Akce
</tr>
</thead>
{% for task in tasks %}
<tr>
<td>
{{ task.code }}
</td>
<td>
{{ task.name }}
</td>
<td>
TODO počet
</td>
<td>
{{ task.code }}
<td>
{{ task.name }}
<td>
TODO počet
<td><div
class=
"btn-group"
>
<a
class=
"btn btn-xs btn-primary"
href=
"{{ url_for('org_contest_task_submits', contest_id=contest.contest_id, task_id=task.task_id, site_id=site_id) }}"
>
Odevzdaná řešení
</a>
{% if can_upload_feedback %}
@@ -73,7 +73,7 @@
{% if can_edit_points %}
<a
class=
"btn btn-xs btn-primary"
href=
"#TODO"
>
Zadávání bodů
</a>
{% endif %}
</div>
</td>
</div>
</tr>
{% endfor %}
</table>
Loading