Revert "Removed the "fix_scrollbarbug" div and all references to it."
[citadel.git] / webcit / static / t / floors.html
1 <?=("head")><?=("important_msg")><?%("COND:LOGGEDIN", 1, 1, 1, "", ="paging")>
2
3 <div id="banner">
4         <h1><?_("Add/change/delete floors")></h1>
5 </div>
6
7 <div id="content" class="service fix_scrollbar_bug">
8         <table border="1" width="100%" bgcolor="#ffffff">
9                 <tr>
10                         <th><?_("Floor number")></th>
11                         <th><?_("Floor name")></th>
12                         <th><?_("Number of rooms")></th>
13                         <th><?_("Floor CSS")></th>
14                 </tr>
15
16                 <?ITERATE("LFLR", ="floors_edit_one")>
17
18                 <tr>
19                         <td>&nbsp;</td>
20                         <td>
21                                 <form method="post" action="create_floor">
22                                         <input type="hidden" name="nonce" value="<?NONCE>">
23                                         <input type="text" name="floorname" maxlength="250">
24                                         <input type="submit" name="sc" value="<?_("Create new floor")>">
25                                 </form>
26                         </td>
27                         <td>&nbsp;</td>
28                 </tr>
29         </table>
30 </div>
31 <?=("trailing")>