- Aug 15, 2019
-
-
Dominik Seeger authored
-
- Jul 02, 2019
-
-
Dominik Seeger authored
-
-
-
-
-
- Jan 06, 2019
-
-
robinwilliam.hundt authored
-
- Sep 30, 2018
-
-
robinwilliam.hundt authored
-
- Sep 29, 2018
-
-
robinwilliam.hundt authored
Use postgres:9.6 is ci
-
- Sep 26, 2018
-
-
robinwilliam.hundt authored
-
- Aug 10, 2018
-
-
robinwilliam.hundt authored
-
- Aug 05, 2018
-
-
robinwilliam.hundt authored
-
robinwilliam.hundt authored
-
- Aug 03, 2018
-
-
robinwilliam.hundt authored
-
- May 05, 2018
-
-
robinwilliam.hundt authored
The student page will no longer crash should there be no feedback objects for submissions and display a message to the user explaining that the submission hasn't been corrected due to the exam beeing pass only.
-
- Apr 05, 2018
-
-
robinwilliam.hundt authored
-
- Mar 22, 2018
-
-
robinwilliam.hundt authored
-
- Mar 21, 2018
-
-
robinwilliam.hundt authored
-
- Feb 19, 2018
-
-
robinwilliam.hundt authored
Fixed subscription deletion Added welcome Jumbotron with some nice info/links Some work on start page Added feedback_stage_for_user to feedback serializer This field will contain the feedback stage of the subscription for which the requesting user has created this feedback. This is needed to correctly give the choice to set the final attribute in the frontend. Fix final checkbox frontend Fix disappearing names in feedback list
-
- Feb 18, 2018
-
-
robinwilliam.hundt authored
Solution Syntax highlighting
-
robinwilliam.hundt authored
Student names in Subscription list for reviewer Short polling on orig Feedback Refresh button student list FeedbackComment visiblity indication SubscriptionEnded page Right side of student overview is sticky Statistics overview
-
- Feb 17, 2018
-
-
robinwilliam.hundt authored
Implemented Feedback History Table incl. search Side Note: When searching the table, should the resulting filtered arr be <= than size 10 all those submissions will be prefetched if not already present and the user is able to instantanously view the submission. NICE! Added Tests and sticky beahvior for feedback hist Inactive subscriptions are shown Added subscription refresh button Fixed jwt refresh and auto logout Added feedback link Visual cue of final status in student overview Correct Student for reviewer
-
- Feb 06, 2018
-
-
robinwilliam.hundt authored
-
- Feb 05, 2018
-
-
robinwilliam.hundt authored
See #90 for Problem with ExamType subscriptions
-
- Feb 04, 2018
-
-
robinwilliam.hundt authored
Fixed reverse query bug in Subscription model Fixed bug in subscription view resulting in uncaught exception Creating a subscription with a query/key/stage combination for which no assignments were available would result in an uncaught SubscriptionEnded exception and a 500 response to the client. Instead an error message with the status code 410_GONE is now sent. Fixed reverse query bug in Subscription model chnaged type_query_mapper = { ... SUBMISSION_TYPE_QUERY: 'type__title', } to type_query_mapper = { SUBMISSION_TYPE_QUERY: 'type__name', } Refactored serializer id fields and camelCase names To provide a uniform api and to save us from further work i've refactored the existing fields that used camelCase names to use the names specified in the models (which are kebab-case). Also everywhere where id's (whether normal or uuid ones) have been included in the serializers, the field names have been changed to 'pk' or '<model>_pk'. Pk will always link to the primary key of the model and will save us great pain should we decide to convert the pk's of more models to uuid's. Also we won't have to remebre a bunch of different ways of referring to the id for the frontend, it's always pk. I also included the pk field in all modelserializers since this will be necessary for the frontend state management. Frontend now expects pk fields and snake_case Solution is highlighted / Desc. HTML is rendered Frontend test is only manually run Added vue-notification library Inactivity detection preperly implementd Client inactivity is now properly detected. A vuex plugin is used to store the time of the last commited mutation. This roughly equals the last user interaction. If the users session is expired he will be redirected to the login page. Before that a dialog is displayed notifieng the user that they are about to be logged out. Added created / of_tutor info to feedback comment
-