Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Postal Owl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Postal Owl
Postal Owl
Merge requests
!1
Project 'mj/owl' was moved to 'owl/owl'. Please update any links and bookmarks that may still have the old path.
Student grading
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Student grading
student-grading
into
master
Overview
38
Commits
7
Changes
10
3 open threads
Hide all comments
Merged
Student grading
Martin Mareš
requested to merge
student-grading
into
master
Mar 1, 2021
Overview
38
Commits
7
Changes
5
3 open threads
Hide all comments
0
0
Merge request reports
Compare
version 2
version 3
53e2fa5a
Mar 5, 2021
version 2
f822d7cf
Mar 2, 2021
version 1
b78cff29
Mar 1, 2021
master (base)
and
version 3
latest version
b6c93aae
7 commits,
Mar 6, 2021
version 3
53e2fa5a
7 commits,
Mar 5, 2021
version 2
f822d7cf
6 commits,
Mar 2, 2021
version 1
b78cff29
8 commits,
Mar 1, 2021
Show latest version
5 files
+
42
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
templates/admin-topic-graders.html
+
25
−
16
View file @ 53e2fa5a
Edit in single-file editor
Open in Web IDE
{% extends "base.html" %}
{% block body %}
<h2>
Assign
graders
t
o {{ topic.title }}
</h2>
<h2>
Student
graders o
f
{{ topic.title }}
</h2>
<div
class=
"buttons"
>
<span
class=
"button"
><a
href=
"{{url_for('admin_topics', cident=g.course.ident)}}"
>
Back
</a></span>
</div>
<h3>
Assigned graders
</h3>
<ul>
{% for s, form in s_assigned %}
<li><form
method=
"POST"
action=
""
>
{{ form.csrf_token }}
{{ form.uid }}
<b>
{{ s.full_name }}
</b>
:
{{ form.unassign }}
</form></li>
{% endfor %}
</ul>
<h3>
Unassigned students
</h3>
<ul>
{% for s, form in students %}
<li>
<form
method=
"POST"
action=
""
>
{{ form.csrf_token }}
{{ form['uid']() }}
<b>
{{ s.full_name }}
</b>
:
{% if s.is_grader %}
Assigned
–
{{ form['unassign'] }}
{% else %}
{{ form['assign'] }}
{% endif %}
</form>
</li>
{% for s, form in s_unassigned %}
<li><form
method=
"POST"
action=
""
>
{{ form.csrf_token }}
{{ form.uid }}
<b>
{{ s.full_name }}
</b>
:
{{ form.assign }}
</form></li>
{% endfor %}
</ul>
{% endblock %}
Loading