Home

Awesome

Django quiz app

Build Status

This is a configurable quiz app for Django.

I use it to run a few medical revision websites. Here is an example website

My websites have used twitter bootstrap for the front end and I have tried to strip out anything from the template files that are dependant on bootstrap.

Questions

Current features

Features of each quiz:

Result page

Requirements

django-model-utils

Pillow

Tests are included and pass for Django versions 1.5, 1.6, 1.7 and 1.8, running with Python 2.7, 3.3 and 3.4

Installation

Clone the repo with git clone https://github.com/tomwalker/django_quiz.git.

Run pip install -r requirements.txt. Run python setup.py install

Add 'quiz', 'multichoice', 'true_false', 'essay' to your INSTALLED_APPS setting.

INSTALLED_APPS = (
    ...
    'quiz',
    'multichoice',
    'true_false',
'essay',
    ...
)

Add the following to your projects urls.py file, substituting q for whatever you want the quiz base url to be.

urlpatterns = patterns('',
    ...
    url(r'^q/', include('quiz.urls')),
	...
)

Contributors

MIT License (MIT) Copyright (c) 2012 - 2015 Dr Tom Walker

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.