Re: django-quiz modification

2016-10-05 Thread Yew Tze Ee
How to runserver? like python manage.py runserver On Monday, 10 March 2014 14:04:35 UTC+8, orchid barua wrote: > > I want to modify the django-quiz application. > https://github.com/tomwalker/django_quiz > > The quesiton will be a multiple true false type. Each question will have 5 > stem, each w

Re: django-quiz modification

2016-10-05 Thread Yew Tze Ee
yewtzeee@yewtzeee-VirtualBox:~/django-project/quiz_app/django_quiz$ python setup.py install running install error: can't create or remove files in install directory The following error occurred while trying to add or remove files in the installation directory: [Errno 13] Permission denied:

Re: django-quiz modification

2016-10-05 Thread Yew Tze Ee
Hi Tom, May I know do I need to start my own project? How to do python manage.py runserver? On Tuesday, 15 July 2014 04:23:50 UTC+8, Tom Walker wrote: > > Hi Orchid, > > I am the author of the quiz app that has been recently updated - check it > out: https://github.com/tomwalker/django_quiz > >

Re: django-quiz modification

2014-07-14 Thread Tom Walker
Hi Orchid, I am the author of the quiz app that has been recently updated - check it out: https://github.com/tomwalker/django_quiz It should be a lot easier for you to work with now. Why dont you add it on as a feature request and I will try to get it added soon. If you have a solution alread

Re: django-quiz modification

2014-03-14 Thread Camilo Torres
On Wednesday, March 12, 2014 9:39:16 AM UTC-4:30, orchid barua wrote: > > The view portion has this: > def question_check_anon(request, quiz): > """ > check if a question is correct, adds to score if needed and return the > previous questions details > """ > quiz_id = str(quiz.id)

Re: django-quiz modification

2014-03-12 Thread orchid barua
The view portion has this: def question_check_anon(request, quiz): """ check if a question is correct, adds to score if needed and return the previous questions details """ quiz_id = str(quiz.id) guess = request.GET['guess'] answer = Answer.objects.get(id=guess) questio