sites/irclogs.qmsk.net/templates/channel.tmpl
changeset 46 73aef9705d6c
parent 45 e94ab812c0c8
child 47 2cceeb731950
--- a/sites/irclogs.qmsk.net/templates/channel.tmpl	Sun Feb 08 03:13:11 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-<%inherit file="layout.tmpl" />
-
-<%def name="menu()">
-<ul>
-    <li><a href="${urls.index.build(req)}">Home</a></li>
-
-    <li>
-        <form action="${urls.channel_select.build(req)}" method="GET">
-            <label for="channel">Channel:</label>
-
-            <select name="channel">
-            % for ch in channel_list :
-                <option value="${ch.id}"${' selected="selected"' if ch == channel else ''}>${ch.title}</option>
-            % endfor
-            </select><input type="submit" value="Go &raquo;" />
-        </form>
-    </li>
-
-    <li>
-        <form action="" method="GET">
-            View last
-
-            <select name="count">
-            % for cc in (10, 20, 50, 100, 'all') :
-                <option${' selected="selected"' if cc == count else ''}>${cc}</option>
-            % endfor
-            </select>
-
-            lines: <input type="submit" value="Go &raquo;" />
-        </form>
-    </li>
-
-    <li><a href="#">Browse by Date</a></li>
-
-    <li><a href="#">Search</a></li>
-
-    <li><a href="#">[RSS]</a></li>
-</ul>
-</%def>
-
-<h1>${channel.title} &raquo; Last ${count} lines</h1>
-
-<pre>
-% for line in lines :
-${line}
-% endfor
-</pre>
-