tags:

views:

29

answers:

1

I'm using the Drupal Quiz module, and have setup some basic quizzes and stuff like that. However some further customization is required, involving more than 1 question per page, and a multi-type answer in this type of format:

Question 1: Describe 4 things you did last summer a) [ short answer space - text field ] b) "I wept" c) "My whole family died so I learned self reliance" d) "I got another xbox"

Question 2: Describe 2 things you hate about yourself a) "My arms are way shorter than my legs" b) "I was born without human emotion"

So I guess in two parts, how to show multiple questions per page, and then how to allow multiple text fields for answers. Oh and this quiz is not graded, it's like a self assessment.

Thanks!

A: 

You may find that webform better suits your needs

Jeremy French
Problem is, webform doesn't support a lot of the Quiz features like resume. I'm leaning towards writing custom question types, but that may not solve the issue of showing multiple questions per page still.
Andrew
Andrew
Ok I got rid of the Rules bit, since that was really hacky. The way I went is to just write a simple custom module and use hook_form_alter to adjust the form redirect to the next page. I just store a list of nid's globally for each grouping of quizzes.
Andrew

related questions