moved code up one level to eliminate the docs subdirectory
[acontent.git] / themes / default / tests / create_edit_question_multianswer.tmpl.php
1 <?php\r
2 /************************************************************************/\r
3 /* AContent                                                             */\r
4 /************************************************************************/\r
5 /* Copyright (c) 2010                                                   */\r
6 /* Inclusive Design Institute                                           */\r
7 /*                                                                      */\r
8 /* This program is free software. You can redistribute it and/or        */\r
9 /* modify it under the terms of the GNU General Public License          */\r
10 /* as published by the Free Software Foundation.                        */\r
11 /************************************************************************/\r
12 \r
13 require_once(TR_INCLUDE_PATH.'../tests/classes/TestsUtility.class.php');\r
14 ?>\r
15 \r
16 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">\r
17 <?php if (isset($this->qid)) {?><input type="hidden" name="qid" value="<?php echo $this->qid; ?>" /><?php }?>\r
18 <?php if (isset($this->tid)) {?><input type="hidden" name="tid" value="<?php echo $this->tid; ?>" /><?php }?>\r
19 <input type="hidden" name="_course_id" value="<?php echo $this->course_id; ?>" />\r
20 \r
21 <div class="input-form">\r
22         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('test_ma'); ?></legend>\r
23         <div class="row">\r
24                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="cats"><?php echo _AT('category'); ?></label>\r
25                 <select name="category_id" id="cats">\r
26                         <?php TestsUtility::printQuestionCatsInDropDown($_POST['category_id']); ?>\r
27                 </select>\r
28         </div>\r
29         \r
30         <div class="row">\r
31                 <label for="optional_feedback"><?php echo _AT('optional_feedback'); ?></label> \r
32                 <?php TestsUtility::printVisualEditorLink('optional_feedback'); ?>      \r
33 \r
34                 <textarea id="optional_feedback" cols="50" rows="3" name="feedback"><?php echo htmlspecialchars(stripslashes($_POST['feedback'])); ?></textarea>\r
35         </div>\r
36 \r
37         <div class="row">\r
38                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="question"><?php echo _AT('question'); ?></label> \r
39                 <?php TestsUtility::printVisualEditorLink('question'); ?>               \r
40                 <textarea id="question" cols="50" rows="4" name="question"><?php \r
41                         echo htmlspecialchars(stripslashes($_POST['question'])); ?></textarea>\r
42         </div>\r
43 \r
44         <?php \r
45         for ($i=0; $i<10; $i++) { ?>\r
46                 <div class="row">\r
47                         <label for="choice_<?php echo $i; ?>"><?php echo _AT('choice'); ?> <?php echo ($i+1); ?></label> \r
48                         <?php TestsUtility::printVisualEditorLink('choice_'.$i); ?>                     \r
49                         <br />\r
50                         <small><input type="checkbox" name="answer[<?php echo $i; ?>]" id="answer_<?php echo $i; ?>" value="1" <?php if($_POST['answer'][$i]) { echo 'checked="checked"';} ?>><label for="answer_<?php echo $i; ?>"><?php echo _AT('correct_answer'); ?></label></small>\r
51                         \r
52 \r
53                         <textarea id="choice_<?php echo $i; ?>" cols="50" rows="2" name="choice[<?php echo $i; ?>]" class="formfield"><?php echo htmlspecialchars(stripslashes($_POST['choice'][$i])); ?></textarea>\r
54                 </div>\r
55         <?php } ?>\r
56 \r
57         <div class="row buttons">\r
58                 <input type="submit" value="<?php echo _AT('save'); ?>"   name="submit" accesskey="s" />\r
59                 <input type="submit" value="<?php echo _AT('cancel'); ?>" name="cancel" />\r
60         </div>\r
61         </fieldset>\r
62 </div>\r
63 </form>\r