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
2
Merged
Student grading
Martin Mareš
requested to merge
student-grading
into
master
Mar 1, 2021
Overview
31
Commits
7
Changes
2
0
0
Merge request reports
Viewing commit
87409992
Prev
Next
Show latest version
2 files
+
94
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
87409992
Student grading assignment page for topic
· 87409992
Václav Končický
authored
Mar 5, 2021
templates/admin-topic-graders.html
0 → 100644
+
32
−
0
View file @ 87409992
Edit in single-file editor
Open in Web IDE
{% extends "base.html" %}
{% block body %}
<h2>
Student graders of {{ 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 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