qmsk/irclogs/templates/channel_last.tmpl
author terom
Wed, 30 Mar 2016 01:29:22 +0300
changeset 153 47dbaa6b13b0
parent 143 154d2d8ae9c0
permissions -rw-r--r--
qmsk.irclogs: config LogChannel tempire
<%inherit file="channel.tmpl" />

<div id="title">${channel.title} :: Last ${count} lines</div>

<form action="${h.url(urls.channel_last, channel=channel)}" method="GET">
    View last <select name="count">
        ${h.select_options(((None, cc) for cc in (10, 20, 50, 100, 200, 500, 1000)), count)}
    </select> lines: <input type="submit" value="Go &raquo;" />
</form>

<%include file="lines.tmpl" />

<div id="other-formats">
    Other formats available:<br/>
        <a href="${h.url(urls.channel_last, channel=channel, count=count, type='txt')}">Plaintext</a>
    |   <a href="${h.url(urls.channel_last, channel=channel, count=count, type='png')}">PNG</a>
    |   <a href="${h.url(urls.channel_last, channel=channel, count=count, type='rss')}">RSS</a>
</div>