templates/lines.tmpl
changeset 72 5ade0288f2ec
parent 70 72edbbb414a7
equal deleted inserted replaced
71:e909bde831e7 72:5ade0288f2ec
       
     1 <% formatter = prefs['formatter'] %>
       
     2 
     1 <div id="lines">
     3 <div id="lines">
     2 % for index, line in enumerate(lines):
     4 % if formatter.html_fixedwidth :
     3 ${line}
     5 <pre>
       
     6 % endif
       
     7 % for line, html in lines:
       
     8 <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}
     4 % endfor
     9 % endfor
       
    10 % if formatter.html_fixedwidth :
       
    11 </pre>
       
    12 % endif
     5 </div>
    13 </div>