summaryrefslogtreecommitdiff
path: root/yaksh/models.py
AgeCommit message (Collapse)Author
2020-10-23Update marks using CSV file uploadprathamesh
2020-10-15Display unanswered questions in grading viewankitjavalkar
2020-10-08User can create anonymous post and commentCruiseDevice
2020-10-08Fix tests and minor changesCruiseDevice
2020-10-08Show Lesson post and comments in discussion forumCruiseDevice
- Use trash icon instead of DELETE button - Sidebar to navigate between course forum and lesson forum - Course forum displays all the questions (posts) linked with the course model, and Lesson forum displays all the questions (posts) linked with the Lesson model.
2020-10-08Remove generic relation to Post from Course and Lesson.CruiseDevice
- Fixes breaking tests.
2020-10-08Make Post model generic.CruiseDevice
- Fix breaking links in forum after change in models.
2020-10-07Set prereqs to False by defaultankitjavalkar
2020-09-30Add table of contents for lesson with yaml uploadadityacp
2020-09-30Resolve Conflictsadityacp
2020-09-28Re calculate and save total marks of paperankitjavalkar
2020-09-25Change forms, models, settings and templateadityacp
- Add max_upload_size in settings for video file - Change error messages in forms - Set the video_file field max_length - Fix add_lesson template for uploading video file
2020-09-23Fix conflictsadityacp
2020-09-23Add more testsadityacp
2020-09-22Add initial tests for lesson contentsadityacp
2020-09-17Allow to extend time even if the paper is completed.prathamesh
2020-09-17Merge branch 'master' of https://github.com/FOSSEE/online_test into ↵adityacp
add_in_video_questions
2020-09-14Show lesson quiz statisticsadityacp
2020-09-14Merge pull request #758 from ankitjavalkar/fix_file_name_errorankitjavalkar
Multiple Fixes
2020-09-14Merge pull request #751 from CruiseDevice/partial_grade_userankitjavalkar
Show max marks for all attempts in answerpaper
2020-09-14Merge pull request #754 from ankitjavalkar/get_distinct_answeredankitjavalkar
Fetch only distinct answered questions
2020-09-12Mulitple changesadityacp
- Remove all alerts and add toast messages - Accept user submissions for the lesson quiz and evaluate - Initial lesson statistics
2020-09-11Multiple changesankitjavalkar
- Increase max_limit for files names in AssignmentUploads - Add email display to Added Teacher/TA screen
2020-09-10Store and evaluate lesson quiz answeradityacp
2020-09-09Show the toc quiz on the student dashboardadityacp
2020-09-09Resolve conflictsadityacp
2020-09-08Provide additional attempt to a selected student or extend time.prathamesh
2020-09-03Change views, forms, models, urlsadityacp
- Disable the question type in video question form - Change urls to add graded quiz, exercise, poll type question - Save the topic and question in table of contents - Rename lesson attribute in TableOfContents model
2020-09-03Fetch only distinct answered questionsankitjavalkar
2020-09-01Fix tests, Fix PEP8CruiseDevice
2020-08-28Show max marks for all attempts in answerpaperCruiseDevice
- Latest attempt marks were shown in the answerpaper, which made it difficult to analyze the paper. This PR fixes the issue and the best marks of all the attempt are provided.
2020-08-28Merge branch 'master' of https://github.com/FOSSEE/online_test into ↵adityacp
multiple_fixes
2020-08-28Multiple changesadityacp
- Fix a bug where user cannot submit zero as answer - Fix UI in question statistics - Fix a bug where the trial question paper was not updated
2020-08-26First cut for in video quizzesadityacp
2020-08-09[FIX] #546 - create_moderator command if User has no ProfileJayram
2020-08-08Add select all checkbox in design qp for fixed questions.CruiseDevice
2020-07-30Make changes based on feedbackankitjavalkar
2020-07-22Fix division by zero error when quizzes do not existankitjavalkar
2020-06-10Allow moderator to hide test cases from the userprathamesh
2020-06-08- Remove Copy Of in Module, Lesson and Quiz names when duplicating coursesankitjavalkar
- Prevent student users from accessing Questions
2020-05-18Merge pull request #697 from CruiseDevice/change-create_questionPalaparthy Adityachandra
Fix: #696
2020-05-13Merge branch 'master' into change-create_questionPalaparthy Adityachandra
2020-05-12Add testcases for start view functionCruiseDevice
2020-04-30Merge branch 'master' into APIPalaparthy Adityachandra
2020-04-29Fix: #696CruiseDevice
2020-04-27Merge pull request #690 from CruiseDevice/forumPalaparthy Adityachandra
Discussion Forum for Yaksh
2020-04-15Resolve commentsCruiseDevice
- Fix "'image' attribute has no file associated with it" issue. - Don't allow users who are not part of a course to see the discussion forum of that course. - Add Discussion forum link in moderator interface under course_details page. - Remove custom css for post and comments in Discussion forum. Use bootstrap 'img-fluid' class instead. 'img-fluid' fills the height and width of the card. - Use instance.uid instead of just instance in get_image_dir.
2020-04-14Change model name Thread to Post to avoid conflictsCruiseDevice
- Thread class from threading conflicts with the forum Thread model. - Tests for models and views. - PEP8 fix.
2020-04-13Add feature to hide thread or commentsCruiseDevice
2020-04-13Add feature for uploading imagesCruiseDevice