##// END OF EJS Templates
pull-requests: small code cleanup to define other type of merge username...
pull-requests: small code cleanup to define other type of merge username - possible to specify alternative attr using env option: RC_MERGE_USER_NAME_ATTR

File last commit:

r3755:2e97cecb new-ui
r4191:10d818a8 stable
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>