Skip to content
Snippets Groups Projects
Commit ea0d91d9 authored by Jan Maximilian Michal's avatar Jan Maximilian Michal
Browse files

README update

parent fe074afe
Branches
Tags
No related merge requests found
......@@ -5,18 +5,6 @@ Grady - will correct you!
The intention of this tool is to simplify the exam correcting process at the
University of Goettingen. It is deployed as a Django web application.
TODO
====
- improve ace editor usability
- provide one time passwords for student accounts
- use postgresql
- csv export
- versioning for feedback
- implement feedback status (default: final, needs review, init)
- better usernames for students
- ajaxify feedback finalize/status marker
Overview
========
......
......@@ -26,7 +26,6 @@ class FeedbackForm(ModelForm):
params={'max_score': full_score},
)
if not cleaned_data.get("text"):
cleaned_data["status"] = Feedback.EDITABLE
raise ValidationError(
......
......@@ -45,7 +45,7 @@ def get_annotated_feedback_count():
def tutor_view(request):
context = {
'submission_type_list': get_annotated_feedback_count(),
'feedback_list': Feedback.objects.filter(of_tutor=request.user),
'feedback_list': Feedback.objects.filter(of_tutor=request.user).order_by('status'),
'feedback_open_list': Feedback.objects.filter(Q(status=Feedback.OPEN) & ~Q(of_tutor=request.user)),
}
return render(request, 'core/tutor_startpage.html', context)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment