##// END OF EJS Templates
users: replaced extraction of user_ids with more efficient method....
users: replaced extraction of user_ids with more efficient method. - by default it extracts only active accounts.

File last commit:

r3755:2e97cecb new-ui
r4190:d89af9cb 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>