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
!79
Odkazy na soutěže z míst
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
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
4 years ago
Overview
0
Commits
1
Changes
2
Closes
#213 (closed)
0
0
Merge request reports
Compare
devel
version 3
8a238626
4 years ago
version 2
7c012d62
4 years ago
version 1
46126eff
4 years ago
devel (base)
and
version 1
latest version
658a072c
1 commit,
4 years ago
version 3
8a238626
1 commit,
4 years ago
version 2
7c012d62
1 commit,
4 years ago
version 1
46126eff
1 commit,
4 years ago
2 files
+
32
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
mo/web/templates/org_place.html
+
24
−
0
View file @ 46126eff
Edit in single-file editor
Open in Web IDE
Show full file
@@ -55,4 +55,28 @@
<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 %}
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 %}
{% endif %}
</table>
{% endblock %}
Loading