Hi everybody, I'm creating a Django based web application for my Master thesis and I've got a hard problem. This is my model (greatly simplified):
class Questionnaire(models.Model): title = models.CharField() description = models.TextField() created_by = models.ForeignKey(User, editable=False) class Question(models.Model): title = models.CharField() questionnaire = models.ForeignKey(Questionnaire) position = PositionField(unique_for_field='questionnaire') class Answer(models.Model): title = models.CharField() question = models.ForeignKey(Question) position = PositionField(unique_for_field='question') I'm using the admin app for creating Questionnaires and I'd like to let users edit questions and answers in the same form. AFAIK recursive inlines aren't supported in Django (a hard problem by itself) so the only other way I could think of is to inject a TextArea form field inside of the QuestionInline and then do the processing of it manually. Answers would then be separated by newlines and the positions would be determined by the order of lines in the TextArea. The problem is I don't know how to inject the TextArea in the inline. I tried many things from simple to complex - and the otherwise excellent documentation doesn't give much help. Thanks, -- Petar Marić *e-mail: [EMAIL PROTECTED] *mobile: +381 (64) 6122467 *icq: 224720322 *jabber: [EMAIL PROTECTED] *web: http://www.petarmaric.com/ --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---