##// END OF EJS Templates
downloads: added more archive options that we support. Exposing this to users so they actually...
downloads: added more archive options that we support. Exposing this to users so they actually know we support more then .zip downloads.

File last commit:

r3755:2e97cecb new-ui
r4450:9a24f7d4 default
Show More
file_content.mako
9 lines | 261 B | application/x-mako | MakoHtmlLexer
<%namespace name="sourceblock" file="/codeblocks/source.mako"/>
<%def name="render_lines(lines)">
<table class="cb codehilite">
%for line_num, tokens in enumerate(lines, 1):
${sourceblock.render_line(line_num, tokens)}
%endfor
</table>
</%def>