templates/channel.tmpl
author Tero Marttila <terom@fixme.fi>
Sun, 08 Feb 2009 04:41:00 +0200
changeset 48 7858b7b8ffe3
parent 46 185504387370
child 49 aaa62c8e5bd5
permissions -rw-r--r--
fix bugs with file tailing
<%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 | h}
% endfor
</pre>