AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / docs / themes / default / tests / create_edit_question_truefalse.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_tf'); ?></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                 <textarea id="optional_feedback" cols="50" rows="3" name="feedback"><?php echo htmlspecialchars(stripslashes($_POST['feedback'])); ?></textarea>\r
34         </div>\r
35 \r
36         <div class="row">\r
37                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="question"><?php echo _AT('statement'); ?></label> \r
38                 <?php TestsUtility::printVisualEditorLink('question'); ?>       \r
39                 <textarea id="question" cols="50" rows="6" name="question"><?php \r
40                         echo htmlspecialchars(stripslashes($_POST['question'])); ?></textarea>\r
41         </div>\r
42 \r
43         <div class="row">\r
44                 <?php echo _AT('answer'); ?><br />\r
45                 <input type="radio" name="answer" value="1" id="answer1"<?php echo $this->ans_yes; ?> /><label for="answer1"><?php echo _AT('true'); ?></label>, <input type="radio" name="answer" value="2" id="answer2"<?php echo $this->ans_no; ?> /><label for="answer2"><?php echo _AT('false'); ?></label>\r
46         </div>\r
47 \r
48         <div class="row buttons">\r
49                 <input type="submit" value="<?php echo _AT('save'); ?>"   name="submit" accesskey="s"/>\r
50                 <input type="submit" value="<?php echo _AT('cancel'); ?>" name="cancel" />\r
51         </div>\r
52         </fieldset>\r
53 </div>\r
54 </form>\r