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
!30
Zakládání řešení zadáváním bodů
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Zakládání řešení zadáváním bodů
jirka/create-sol-points
into
devel
Overview
8
Commits
5
Changes
3
All threads resolved!
Hide all comments
Merged
Jiří Setnička
requested to merge
jirka/create-sol-points
into
devel
4 years ago
Overview
8
Commits
5
Changes
3
All threads resolved!
Hide all comments
Z detailu řešení i z tabulky bodování úlohy.
0
0
Merge request reports
Viewing commit
42e12f74
Show latest version
3 files
+
107
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
42e12f74
UI pro dávkové bodování
· 42e12f74
Martin Mareš
authored
4 years ago
mo/web/templates/org_generic_batch_points.html
0 → 100644
+
26
−
0
View file @ 42e12f74
Edit in single-file editor
Open in Web IDE
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block title %}Dávkové bodování úlohy {{ task.code }} {{ task.name }}{% endblock %}
{% block breadcrumbs %}
{{ contest_breadcrumbs(round=round, contest=contest, task=task, action="Dávkové bodování") }}
{% endblock %}
{% block body %}
{% if errs %}
<h3>
Chyby při importu
</h3>
<pre><div
class=
"alert alert-danger"
role=
"alert"
>
{{ "" -}}
{% for e in errs %}
{{ e }}
{% endfor %}
</div></pre>
{% endif %}
<p>
Zde si můžete stáhnout bodovací formulář v zadaném formátu a pak ho nahrát zpět
s vyplněnými body.
{{ wtf.quick_form(form, form_type='simple', button_map={'submit': 'primary'}) }}
{% endblock %}
Loading