diff options
| author | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-09-09 21:26:40 -0400 |
|---|---|---|
| committer | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-09-09 21:26:40 -0400 |
| commit | aaae9648aaaa867bda586cf7cc7d63ff92689644 (patch) | |
| tree | ad7cfb127209264089edc0604888da97731975f1 /template | |
| parent | e5a9cd50f96c8a96d180280aa1ab32e028cc2538 (diff) | |
sostler prod commit
Diffstat (limited to 'template')
| -rw-r--r-- | template/roomlist.st | 106 | ||||
| -rw-r--r-- | template/rooms/VIP.st | 9 |
2 files changed, 61 insertions, 54 deletions
diff --git a/template/roomlist.st b/template/roomlist.st index 6dadf6a..22000d3 100644 --- a/template/roomlist.st +++ b/template/roomlist.st @@ -1,53 +1,53 @@ -<html>
- <head>
- <title>dump.fm rooms</title>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
- <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"
- type="text/javascript"></script>
- <script src="/static/js/jquery.tablesorter.min.js"
- type="text/javascript"></script>
- <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-lightness/jquery-ui.css"
- <script src="/static/js/admin.js" type="text/javascript"></script>
- <link rel="stylesheet" type="text/css" href="/static/tsort/style.css">
- <style>
- body { font-family: Monaco, "Courier New", Courier, monospace; }
- </style>
- <script>
- jQuery(function() { jQuery('.tablesorter').tablesorter({}); });
- </script>
-</head>
- <body>
- <h1>dump.fm rooms</h1>
- <table class="tablesorter">
- <thead>
- <tr>
- <th>Name</th>
- <th>VIP?</th>
- <th>Active?</th>
- <th>Created On</th>
- <th>Current Users</th>
- <th>History Size</th>
- <th>Max Filesize</th>
- <th>Max Imagesize</th>
- </tr>
- </thead>
- <tbody>
- $rooms: { r |
- <tr>
- <td>$r.key$</td>
- <td>$r.admin_only$</td>
- <td>$r.active$</td>
- <td>$r.created_on$</td>
- <td>$r.users$</td>
- <td>$r.history_size$</td>
- <td>$r.max_file_size$</td>
- <td>$r.max_image_size_x$x$r.max_image_size_y$</td>
- </tr>
- }$
- </tbody>
- </table>
- </body>
-</html>
-
-
-
+<html> + <head> + <title>dump.fm rooms</title> + <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> + <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js" + type="text/javascript"></script> + <script src="/static/js/jquery.tablesorter.min.js" + type="text/javascript"></script> + <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-lightness/jquery-ui.css" + <script src="/static/js/admin.js" type="text/javascript"></script> + <link rel="stylesheet" type="text/css" href="/static/tsort/style.css"> + <style> + body { font-family: Monaco, "Courier New", Courier, monospace; } + </style> + <script> + jQuery(function() { jQuery('.tablesorter').tablesorter({}); }); + </script> +</head> + <body> + <h1>dump.fm rooms</h1> + <table class="tablesorter"> + <thead> + <tr> + <th>Name</th> + <th>VIP?</th> + <th>Active?</th> + <th>Created On</th> + <th>Current Users</th> + <th>History Size</th> + <th>Max Filesize</th> + <th>Max Imagesize</th> + </tr> + </thead> + <tbody> + $rooms: { r | + <tr> + <td>$r.key$</td> + <td>$r.admin_only$</td> + <td>$r.active$</td> + <td>$r.created_on$</td> + <td>$r.users$</td> + <td>$r.history_size$</td> + <td>$r.max_file_size$</td> + <td>$r.max_image_width$x$r.max_image_height$</td> + </tr> + }$ + </tbody> + </table> + </body> +</html> + + + diff --git a/template/rooms/VIP.st b/template/rooms/VIP.st index 0ad074b..2feb579 100644 --- a/template/rooms/VIP.st +++ b/template/rooms/VIP.st @@ -96,7 +96,6 @@ $endif$ <div id="chatrap"> - <div id="dcontent"> <div id="messagetabs"></div> <div id="rapper"> @@ -187,5 +186,13 @@ $endif$ $footer()$ </div> $preload()$ + +<div id="vipinfo" style="position: absolute; z-index: 100000; right: 50; bottom: 75;"> + <h1>Welcome to the cool club</h1> + <ul><li><a href="/roomlist">Rooms</href></li> + <li><a href="/mutes">Mutes</href></li> + </ul> +</div> + </body> </html> |
