remove old readme
[atutor.git] / docs / themes / mobile / instructor / forums / edit_forum.tmpl.php
1 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
2 <input type="hidden" name="edit_forum" value="true">
3 <input type="hidden" name="fid" value="<?php echo $this->fid; ?>">
4
5 <div class="input-form">
6         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('edit_forum'); ?></legend>
7         <div class="row">
8                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="title"><?php echo _AT('title'); ?></label><br />
9                 <input type="text" name="title" size="40" id="title" value="<?php echo htmlspecialchars(stripslashes($this->row['title'])); ?>" />
10         </div>
11
12         <div class="row">
13                 <label for="body"><?php echo _AT('description'); ?></label><br />
14                 <textarea name="body" cols="40" rows="2" id="body" wrap="wrap"><?php echo AT_print($this->row['description'], 'input.text'); ?></textarea>
15         </div>
16
17         <div class="row">
18                 <label for="edit"><?php echo _AT('allow_editing'); ?></label><br />
19                 <input type="text" name="edit" size="3" id="edit" value="<?php echo intval($this->row['mins_to_edit']); ?>" /> <?php echo _AT('in_minutes'); ?>
20         </div>
21
22         <div class="row buttons">
23                 <input type="submit" name="submit" value="<?php echo _AT('save'); ?>" accesskey="s" /> 
24                 <input type="submit" name="cancel" value="<?php echo _AT('cancel'); ?>" />
25         </div>
26         </fieldset>
27 </div>
28 </form>