diff -r e8f14fde7f0e -r b37fc4c1e189 app/soc/models/quiz.py --- a/app/soc/models/quiz.py Thu Oct 16 04:30:26 2008 +0000 +++ b/app/soc/models/quiz.py Thu Oct 16 04:37:13 2008 +0000 @@ -27,11 +27,11 @@ from django.utils.translation import ugettext_lazy import soc.models.answer -import soc.models.document import soc.models.question +import soc.models.work -class Quiz(soc.models.document.Document): +class Quiz(soc.models.work.Work): """Model of a Quiz, a collection of Questions to be asked. (named Quiz because Questionnaire was too much to type...) @@ -49,8 +49,6 @@ work.title: the title of the Quiz - work.abstract: summary displayed as a snippet in Quiz list views - work.author: the author of the Work referred to by this relation is the author of the Quiz (but not necessarily the individual Questions themselves, see the Question Model) @@ -61,7 +59,7 @@ work.partial_path/work.link_name: used to scope and uniquely identify a Quiz in the same way these properties are used with Documents, etc. - document.content: the "preface" of the Quiz, displayed before any + work.content: the "preface" of the Quiz, displayed before any of the Questions, usually containing instructions for the Quiz In addition to any explicit ReferenceProperties in the Quiz Model and