Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
grady
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Maximilian Michal
grady
Commits
ea0d91d9
Commit
ea0d91d9
authored
8 years ago
by
Jan Maximilian Michal
Browse files
Options
Downloads
Patches
Plain Diff
README update
parent
fe074afe
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.rst
+0
-12
0 additions, 12 deletions
README.rst
core/forms.py
+0
-1
0 additions, 1 deletion
core/forms.py
core/views/user_startpages.py
+1
-1
1 addition, 1 deletion
core/views/user_startpages.py
with
1 addition
and
14 deletions
README.rst
+
0
−
12
View file @
ea0d91d9
...
...
@@ -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
========
...
...
This diff is collapsed.
Click to expand it.
core/forms.py
+
0
−
1
View file @
ea0d91d9
...
...
@@ -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
(
...
...
This diff is collapsed.
Click to expand it.
core/views/user_startpages.py
+
1
−
1
View file @
ea0d91d9
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment