summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-15Added mathjax support for quiz and answerpapersmaheshgudi
2017-03-14Added initial migration for Yakshprathamesh
2017-03-13Removed a function call to datetime now in default quiz start time.prathamesh
Every time when we run makemigrations, model changes are detected. "Alter field start_date_time on quiz" was always detected, even if you have not mode any changes to the models! This was happening because of default time value was datetime.now(). So every time when you ran migrations current datetime was set which will always change. Now removed parenthesis(), so that now function is not called. And no unnecessary model changes will be detected
2017-03-13Added migration commands to the script.prathamesh
Removed migrate with run-syncdb argument because this does not create migration files, so further migrations become difficult. Model changes are detected by make_migrations and the migrate command applies those migrations. This is done every time when user runs a demo. There is no harm in doing so.
2017-03-13Added migrations folder to the app.prathamesh
This required because when we do migration for the first time, initial migrations will be created only if migrations folder is present in the installed app. Otherwise, running makemigrations will not detect the initial migrations for that app. Though we can exclusively specify the app name as the argument to the makemigrations command. But did this so that by default apply migrations. Note: Removed migrations from .gitignore
2017-03-11made minor template changes and fixed test_modelsmaheshgudi
2017-03-11Merge branch 'master' of https://github.com/fossee/online_test into ↵maheshgudi
fill_in_the_blanks
2017-03-10Fix test cases for trial quizadityacp
2017-03-10Fix test questions method in QuestionPaper modeladityacp
2017-03-10Fix demo course creation for selenium testsadityacp
2017-03-10Add test for ordering of questionsadityacp
2017-03-10Change views and modelsadityacp
- Remove Fixed Question Model - Create a fixed question order attribute in models
2017-03-10Change models and views test to get fixed questionsadityacp
2017-03-10Remove manytomany relationship for fixed_questions in question paperadityacp
2017-03-10Allow moderator to select questions in any order requiredadityacp
2017-03-10Add a link to download sample zip fileadityacp
2017-03-10Add url to download sample zip fileadityacp
2017-03-10Changes in models and viewsadityacp
- Display error message if questions_dump.json is not found in zip file - Provide a sample zip file to for easy zip file creation
2017-03-10Merge pull request #243 from ankitjavalkar/coveragePrabhu Ramachandran
Add coverage config file and coverage command to travis
2017-03-09Add coverage:ankitjavalkar
- Add coverage prerequisite to requirements - Add coverage config file - Add coverage command to travis
2017-03-09rebase changesmaheshgudi
2017-03-09pep8 changes in models and user_datamaheshgudi
2017-03-08Merge pull request #235 from ankitjavalkar/fix-del-questionsPrabhu Ramachandran
Hide inactive/deleted questions in Questionpaper creation and question filter
2017-03-08Merge pull request #233 from ankitjavalkar/fix-course-creator-displayPrabhu Ramachandran
Display full name of course creator & redirect logout correctly
2017-03-08Merge pull request #229 from ankitjavalkar/reattempt-mcqPrabhu Ramachandran
Allow to reattempt all types of questions
2017-03-08Merge branch 'master' of https://github.com/fossee/online_test into ↵maheshgudi
fill_in_the_blanks
2017-03-08Hide/Disable submit in correct code questionsankitjavalkar
2017-03-07Hide inactive/deleted questions in Questionpaper creation and question filterankitjavalkar
2017-03-07Add numbering enrolled/requested/rejected students in course details displayankitjavalkar
2017-03-06Multiple fixes:ankitjavalkar
- Add error message details to SeleniumTestError - Fix next question cycling in models - Fix model test cases
2017-03-06Modify UI for notifications in submitted code questionsankitjavalkar
2017-03-06Multiple changes:ankitjavalkar
- Fix movement from one question to another in next_question - Fix random display of errors from MCQs - Add Notification display if question has been attempted - Fix test cases for changes made
2017-03-06Rename completed_question model method to add_completed_questionankitjavalkar
2017-03-06Remove commented codeankitjavalkar
2017-03-06Allow revisiting all types of question to resubmit answerankitjavalkar
2017-03-06Display full name of course creator & redirect logout correctlyankitjavalkar
2017-03-03Merge pull request #230 from adityacp/show_remain_time_monitorPrabhu Ramachandran
Show remaining time of students in monitor
2017-03-03Merge pull request #231 from ankitjavalkar/fix-selen-testPrabhu Ramachandran
Fix selenium tests:
2017-03-03Add message argument to SeleniumTestErrorankitjavalkar
2017-03-02removed pk/id based querying in test casesmaheshgudi
2017-03-02modified answerpaper views for integer, float and string typemaheshgudi
2017-03-02added test cases for float,integer and string type questionsmaheshgudi
2017-03-02changed string check namesmaheshgudi
2017-03-02added float based questionsmaheshgudi
2017-03-02added string based questions.maheshgudi
2017-03-02added integer based question typemaheshgudi
2017-03-02changed mcq to single correct choicemaheshgudi
2017-03-02Remove commented codeankitjavalkar
2017-03-02Change js to convert secondsadityacp
2017-03-02Modify travis.yml to:ankitjavalkar
- Install dependencies from requirements and use setup.py Modify setup.py to remove selenium from install_requires