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
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
3 unresolved threads
Hide all comments
Merged
Martin Mareš
requested to merge
student-grading
into
master
4 years ago
Overview
38
Commits
7
Changes
2
3 unresolved threads
Hide all comments
0
0
Merge request reports
Viewing commit
f2857168
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
f2857168
Student grading assignment page for topic
· f2857168
Václav Končický
authored
4 years ago
templates/admin-topic-graders.html
0 → 100644
+
32
−
0
View file @ f2857168
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