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
!111
Jk/delete registration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Jk/delete registration
jk/delete-registration
into
devel
Overview
4
Commits
4
Changes
2
All threads resolved!
Hide all comments
Merged
Jk/delete registration
Jiří Kalvoda
requested to merge
jk/delete-registration
into
devel
Dec 19, 2021
Overview
4
Commits
4
Changes
2
All threads resolved!
Hide all comments
0
0
Merge request reports
Compare
devel
version 1
8982564e
Dec 19, 2021
devel (base)
and
version 1
latest version
c65e27a8
4 commits,
Dec 20, 2021
version 1
8982564e
3 commits,
Dec 19, 2021
2 files
+
42
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
mo/web/templates/org_user.html
+
6
−
1
View file @ c65e27a8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -61,7 +61,12 @@
<td><a
href=
"{{ url_for('org_place', id=participant.school) }}"
>
{{ participant.school_place.name }}
</a>
<td>
{{ participant.grade }}
<td>
{{ participant.birth_year }}
<td><a
class=
"btn btn-xs btn-primary"
href=
"{{ url_for('org_user_participant_edit', user_id=user.user_id, year=participant.year) }}"
>
Editovat
</a>
<td><div
class=
"btn-group"
>
<a
class=
"btn btn-xs btn-primary"
href=
"{{ url_for('org_user_participant_edit', user_id=user.user_id, year=participant.year) }}"
>
Editovat
</a>
<form
class=
"btn-group"
method=
"POST"
onsubmit=
"return confirm('Opravdu nenávratně smazat?')"
action=
'{{ url_for('
org_user_participant_delete
',
user_id=
user.user_id,
year=
participant.year)
}}'
>
<input
class=
"btn btn-xs btn-danger"
type=
submit
value=
'Smazat'
>
</form>
</div>
</tr>
{% endfor %}
</table>
Loading