Question models
question.models:
Question
Bases: Model
A model that refers to a built-in or customized question
Source code in question/models.py
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
QuestionGroup
Bases: Model
Convenience model for groups of questions to add at once to Block QuestionSeries from admin
Source code in question/models.py
73 74 75 76 77 78 79 80 81 82 83 84 85 |
|
QuestionInSeries
Bases: Model
Question with its index in QuestionSeries
Source code in question/models.py
105 106 107 108 109 110 111 112 113 114 115 |
|
QuestionSeries
Bases: Model
Series of Questions asked in a Block
Source code in question/models.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
|