templates/lines.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 09 Feb 2009 22:17:10 +0200
changeset 72 5ade0288f2ec
parent 70 72edbbb414a7
permissions -rw-r--r--
implement line-links as UTC timestamps
<% formatter = prefs['formatter'] %>

<div id="lines">
% if formatter.html_fixedwidth :
<pre>
% endif
% for line, html in lines:
<a href="${h.build_url(urls.channel_link, channel=channel, timestamp=line.timestamp)}#${h.utc_timestamp(line.timestamp)}" id="${h.utc_timestamp(line.timestamp)}">&raquo;&raquo; </a>${html}
% endfor
% if formatter.html_fixedwidth :
</pre>
% endif
</div>