moved code up one level to eliminate the docs subdirectory
[acontent.git] / themes / default / tests / create_edit_question_long.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_open'); ?></legend>\r
23         <div class="row">\r
24                 <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 \r
41                 <textarea id="question" cols="50" rows="6" name="question"><?php \r
42                 echo htmlspecialchars(stripslashes($_POST['question'])); ?></textarea>\r
43         </div>\r
44         \r
45         <div class="row">\r
46                 <?php echo _AT('answer_size'); ?><br />\r
47                 <input type="radio" name="properties" value="1" id="az1" <?php if ($_POST['properties'] == 1) { echo 'checked="checked"'; } ?> /><label for="az1"><?php echo _AT('one_word'); ?></label><br />\r
48                 <input type="radio" name="properties" value="2" id="az2" <?php if ($_POST['properties'] == 2) { echo 'checked="checked"'; } ?> /><label for="az2"><?php echo _AT('one_sentence'); ?></label><br />\r
49                 <input type="radio" name="properties" value="3" id="az3" <?php if ($_POST['properties'] == 3) { echo 'checked="checked"'; } ?> /><label for="az3"><?php echo _AT('short_paragraph'); ?></label><br />\r
50                 <input type="radio" name="properties" value="4" id="az4" <?php if ($_POST['properties'] == 4) { echo 'checked="checked"'; } ?> /><label for="az4"><?php echo _AT('one_page'); ?></label>\r
51         </div>\r
52 \r
53         <div class="row buttons">\r
54                 <input type="submit" value="<?php echo _AT('save'); ?>"   name="submit" accesskey="s" />\r
55                 <input type="submit" value="<?php echo _AT('cancel'); ?>" name="cancel" />\r
56         </div>\r
57         </fieldset>\r
58 </div>\r
59 </form>\r