##// END OF EJS Templates
emails: set References header for threading in mail user agents even with different subjects...
emails: set References header for threading in mail user agents even with different subjects - drop template headers() function as it wasn't used, and actually had bad implementation

File last commit:

r3755:2e97cecb new-ui
r4447:ae62a3cc 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>