summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authordumpfmprod <dumpfmprod@ubuntu.(none)>2010-09-09 01:52:14 -0400
committerdumpfmprod <dumpfmprod@ubuntu.(none)>2010-09-09 01:52:14 -0400
commit8865b1fd1c891a75f1e2c980241287b82aaaef41 (patch)
tree151001cb0f204f2a3d172110ce888224bfbd4927 /template
parentdc259bea9af388a9ddc2727446590cd4c6cc5fe2 (diff)
sostler prod commit
Diffstat (limited to 'template')
-rw-r--r--template/mutes.st23
1 files changed, 13 insertions, 10 deletions
diff --git a/template/mutes.st b/template/mutes.st
index e826e8d..d8d9e96 100644
--- a/template/mutes.st
+++ b/template/mutes.st
@@ -1,14 +1,17 @@
<html>
<head>
- <title>dump.fm Mutes</title>
- $head()$
+ <title>dump.fm mutes</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>
- #main {
- padding: 100px 2em 0px 2em;
- }
+ body { font-family: Monaco, "Courier New", Courier, monospace; }
input[type=button] {
font-size: 100%;
}
@@ -29,10 +32,10 @@
</script>
</head>
<body>
- $banner()$
+ <h1><a href="http://dump.fm">dump.fm muting system</a></h1>
<div id="main">
- <h1>Active Mutes</h1>
+ <h2>Active Mutes</h2>
<table id="active-mutes" class="tablesorter">
<thead>
@@ -49,7 +52,7 @@
<tbody>
$active: { m |
<tr mute-id="$m.mute_id$">
- <td>$m.nick$</td>
+ <td><a href="/$m.nick$">$m.nick$</a></td>
<td>$m.admin_nick$</td>
<td>$m.set_on$</td>
<td>$m.expiry$</td>
@@ -66,7 +69,7 @@
<br />
- <h1>Inactive Mutes</h1>
+ <h2>Inactive Mutes</h2>
<table id="inactive-mutes" class="tablesorter">
<thead>
@@ -85,7 +88,7 @@
<tbody>
$inactive: { m |
<tr>
- <td>$m.nick$</td>
+ <td><a href="/$m.nick$">$m.nick$<a></td>
<td>$m.admin_nick$</td>
<td>$m.set_on$</td>
<td>$m.expiry$</td>