moved code up one level to eliminate the docs subdirectory
[acontent.git] / themes / default / tests / create_edit_question_ordering.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_ordering'); ?></legend>\r
23         <div class="row">\r
24                 <label for="cats"><?php echo _AT('category'); ?></label><br />\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                 \r
40                 <?php TestsUtility::printVisualEditorLink('question'); ?>\r
41                 \r
42                 <textarea id="question" cols="50" rows="6" name="question"><?php echo htmlspecialchars(stripslashes($_POST['question'])); ?></textarea>\r
43         </div>\r
44 \r
45         <?php for ($i=0; $i<10; $i++): ?>\r
46                 <div class="row">\r
47                         <?php if ($i < 2): ?>\r
48                                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span>\r
49                         <?php endif; ?> <?php echo _AT('item'); ?> <?php echo ($i+1); ?>\r
50                         \r
51                         <?php TestsUtility::printVisualEditorLink('choice_' . $i); ?>\r
52                         \r
53                         <br />\r
54         \r
55                         <textarea id="choice_<?php echo $i; ?>" cols="50" rows="2" name="choice[<?php echo $i; ?>]"><?php \r
56                         echo htmlspecialchars(stripslashes($_POST['choice'][$i])); ?></textarea> \r
57                 </div>\r
58         <?php endfor; ?>\r
59 \r
60         <div class="row buttons">\r
61                 <input type="submit" value="<?php echo _AT('save'); ?>"   name="submit" accesskey="s" />\r
62                 <input type="submit" value="<?php echo _AT('cancel'); ?>" name="cancel" />\r
63         </div>\r
64         </fieldset>\r
65 </div>\r
66 </form>\r