I'm working on an experimental survey application. It's supposed to be
very flexible and expendable to allow creation of various kinds of
surveys.

One of the challenges I met is that custom forum may want to have
custom fields and I would like to avoid having to add a new field to
Question for a specific kind of survey etc.

In result I decided to use something like:

Survey # single survey
QuestionGroup
Question
Respondent
Sheet # single set of answers by single respondent
Value # single response for a single question by a single respondent

This is a basic set of classes that have all the relations needed to
build any kind of survey and store its results.

Majority of the code will operate on those classes and I would like to
keep them 'sane' so in order to allow adding data fields (context of
the question, tooltip, start_date, end_date for surveys) I added
classes:

SurveyProperties
QuestionProperties
QuestionGroupPoperties
ValueProperties
etc.

that have question_id/survey_id linked to related class and have all
the data that can be edited later and will not be as important in
searching through the results as the basic classes.

First, I'm not entirely sure if that's the very best db design ever :/

Second, I need to be able to present all "properties" in Admin view in
Django.

So I'd like to tell django to look for fields that are in
QuestionProperties and values for given question_id and display them
together with fields in Question in admin panel.

In other words when adding/removing/editing I'd like Question and
QuestionProperties to be seen as one linked via question_id.

Does it make sense? Is it possible?

Thanks!

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to