summaryrefslogtreecommitdiff
path: root/yaksh/urls.py
AgeCommit message (Collapse)Author
2017-02-21Add a new view for logoutankitjavalkar
2017-02-01Forgot Password and Reset Issue Resolvedprathamesh
The problem was: We have included yaksh urls to the project urls with the namespace "yaksh". So whenever we call the url name i.e "yaksh:<url>" a reverse match is made. But for Forgot Password and Change Password we are using django's in-built functionality, where the reverse url is hardcoded. So the reverse match fails as the namespace is not specified! To resolve this, created a urls_password_reset URL dispatcher file and included to the project urls.
2017-01-18Can download csv of students' performance per coursemaheshgudi
Moderator can now download the csv dump of the performance of students in each quiz (best attempt of the quiz) for a course.
2017-01-04Student UI modification.prathamesh
Added side navigation bar. Edit and view Profile base template set properly. Added a tab "Enrolled Courses" for students to only view the courses they are enrolled in.
2016-12-19change in add question interfaceprathamesh
2016-12-07basic interface to add multiple testcases to a questionprathamesh
2016-10-04Edit Question Paper Feature.prathamesh
Can edit question paper. For creating new and editing existing question paper, same UI and view is used. Ajax previously used for creation is removed. Not necessary as post request handles the same. Removed unnecessary js.
2016-09-23Merge branch 'master' of https://github.com/FOSSEE/online_test into ↵prathamesh
regrade_papers Resolved Conflicts: yaksh/models.py yaksh/test_models.py yaksh/urls.py yaksh/views.py
2016-09-23Regrade Featureprathamesh
A question can be regraded for a given quiz. Whole quiz can be regraded. Particular user paper can be regraded. Moved validate_answer from views to models. regrade method also updates the answer i.e. marks and correctness. Also, the answer paper percentage is updated.
2016-09-20added url for demo courseadityacp
2016-09-06added 'add new quiz' button to each coursemaheshgudi
2016-08-31Merge branch 'master' of https://github.com/FOSSEE/online_test into ↵prathamesh
view_answerpaper Resolved Conflicts: yaksh/views.py
2016-08-29made UI changes to courses page and teacher can add another teachermaheshgudi
2016-08-25Students can view their submission i.e. answer paperprathamesh
A simple interface for students to view their answerpaper. Moderator has an option where he can allow to students to view their answerpaper.
2016-07-11changed templates for forgot password and change passwordmaheshgudi
2016-07-08Fix Django versions in travis.yml and minor test errorsankitjavalkar
2016-07-08Add further tests for viewsankitjavalkar
2016-07-08Add tests for viewsankitjavalkar
2016-05-27added urls for test_modesmaheshgudi
2016-05-09- Fix testsankitjavalkar
- Fix minor views.py - Fix minor errors caused due to conflict resolution, rebasing - Fix errors in forms, views - Minor Button label change in addquestion.html - Add snippet to question - Remove commented code
2016-05-05- Modify question - answer validation in viewsankitjavalkar
- Modify show_question to include test_cases in template context - Modify question display template - Minor changes in forms and urls for proper rebasing
2016-05-05- Add formsets to Add question templatesankitjavalkar
- add/modify test cases in place when adding questions
2016-05-05changes for download questionsadityacp
2016-05-04rebase changes and changes as per commentsadityacp
2016-05-04models testcase changesadityacp
2016-05-04rebase changesadityacp
2016-05-04changed urls for gradeuser, user_datamahesh
2016-04-28further commented changesadityacp
2016-04-27changes after commentsadityacp
2016-04-26changes in add teachers as per commentsadityacp
2016-04-26rebase changesadityacp
2016-04-18changes for profile editadityacp
2016-04-15changes after rebaseadityacp
2016-04-15changes in edit profile, enrollment, change passwordadityacp
2016-04-15EditProfile, ChangePassword, StudentsEnrollment facilityadityacp
2016-04-11Migration from django 1.6 to django 1.9prathamesh
- upgraded django-taggit to 0.18 from 0.12.2 - added fields attribute in django forms, mandatory in django 1.9 - get_profile attribute of User object deprecated, used hasattr instead. - Template settings changed in django 1.9, all template related settings at one place. - Support for string view arguments to url() is deprecated, so passed callable views instead. - django.conf.urls.patterns() is deprecated, updated urlpatterns to a list of django.conf.urls.url() instances instead. - django.utils.unittest is deprecated, used unittest instead. - made changes in requirements and setup files other - added quiz prerequisite required as false in forms, so that the quiz is added without any prerequisite. - Time zone settings not implemented.
2016-04-07Phase 2 views cleanupprathamesh
views cleaned further used model forms removed unwanted templates
2016-04-01views functions related to exam flow are cleaned-upprathamesh
Cleaned views various functions related to the exam flow. That is, introduction, start, check, show questions. To check prerequisite, can attempt the quiz, start quiz in progress if time available, get all active quizzes all these functionalities are shifted from views to models. Still further it has to be cleaned. For Answerpaper model, made questions, questions_answered and questions_unanswered manytomany relation with the Question model. Corrected the testcases.
2016-03-16A moderator can download csv file for a given question paper.prathamesh
csv includes the latest attempt for the quiz/questionpaper. It contains user details and marks for the quiz.
2016-03-09Forgot Password facilityprathamesh
Used django in-built views. Templates overridden. User enters email address and submits. The user receives an email with password reset link(one time link). The link contains a token generate using the current state of the user like user password. The link is verified each time when it is been requested. So the link will be invalid if the user has already changed the password using the link.(since the token is generated using current state of the user.) User resets his password via the link.
2016-03-02Course module implementedprathamesh
Moderator can now create courses. Under his courses he can create quizzes. Students can enroll for the course. Moderator can approve or reject enrollment request of the student. Student can view quizzes only for the enrolled course.
2016-02-25Question Statistics for a quiz per attempt.prathamesh
Shows the number of appearance of a question versus number of times the question was answered correctly
2016-02-23Added a check for zero attemptprathamesh
2016-02-22Added statistics per question for a quizprathamesh
2016-02-18Monitor shows latest attempt of a student for a given quizprathamesh
User data is shown as per the question paper/quiz and not all together. It also shows other attempts for the same question paper. And then grade user interface is as per question paper if nagivated via monitor interface.
2016-01-15Allow single user session active at any given timeankitjavalkar
2015-09-15Remove testapp dir, remove reference to testapp in paths, filesankitjavalkar