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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Mareš
Odevzdávací Systém MO
Merge requests
!79
Odkazy na soutěže z míst
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Odkazy na soutěže z míst
jk/issue-213
into
devel
Overview
0
Commits
1
Changes
2
Merged
Jiří Kalvoda
requested to merge
jk/issue-213
into
devel
3 years ago
Overview
0
Commits
1
Changes
2
Expand
Closes
#213 (closed)
0
0
Merge request reports
Compare
devel
version 3
8a238626
3 years ago
version 2
7c012d62
3 years ago
version 1
46126eff
3 years ago
devel (base)
and
latest version
latest version
658a072c
1 commit,
3 years ago
version 3
8a238626
1 commit,
3 years ago
version 2
7c012d62
1 commit,
3 years ago
version 1
46126eff
1 commit,
3 years ago
2 files
+
34
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
mo/web/templates/org_place.html
+
25
−
0
Options
@@ -55,4 +55,29 @@
<a
class=
"btn btn-primary"
href=
"{{ url_for('org_place_new_child', id=place.place_id) }}"
>
Přidat nové podřízené místo
</a>
{% endif %}
{% endif %}
<h3>
Soutěže
</h3>
{% if not contests %}
<p>
K tomuto místu nejsou přidružené žádné soutěže.
{% else %}
<table
class=
data
>
<thead><tr>
<th>
ID
<th>
Ročník
<th>
Kat.
<th>
Název
<th>
Stav
</thead>
{% for c in contests %}
<tr>
{% set r = c.round %}
<td><a
href=
'{{ url_for('
org_contest
',
id=
c.contest_id)
}}'
>
{{ r.round_code() }}
</a>
<td>
{{ r.year }}
<td>
{{ r.category }}
<td>
{{ r.name }}
<td
class=
'rstate-{{c.state.name}}'
>
{{ c.state.friendly_name() }}
{% endfor %}
</table>
{% endif %}
{% endblock %}
Loading