Commit de5b989e by Christina Roberts Committed by GitHub

Merge pull request #13862 from proversity-org/proversity/fix-closing-tag

Fix bad closing tag in staff problem info template
parents 689f614e 59e0040e
...@@ -83,26 +83,26 @@ ${block_content} ...@@ -83,26 +83,26 @@ ${block_content}
% endif % endif
] ]
</div> </div>
<div id="result_${location.name | h}"/> <div id="result_${location.name | h}"></div>
</div> </div>
<div class="staff_info" style="display:block"> <div class="staff_info" style="display:block">
is_released = ${is_released} is_released = ${is_released}
location = ${location.to_deprecated_string() | h} location = ${location.to_deprecated_string() | h}
<table summary="${_('Module Fields')}"> <table summary="${_('Module Fields')}">
<tr><th>${_('Module Fields')}</th></tr> <tr><th>${_('Module Fields')}</th></tr>
%for name, field in fields: %for name, field in fields:
<tr><td style="width:25%">${name}</td><td><pre style="display:inline-block; margin: 0;">${field | h}</pre></td></tr> <tr><td style="width:25%">${name}</td><td><pre style="display:inline-block; margin: 0;">${field | h}</pre></td></tr>
%endfor %endfor
</table> </table>
<table> <table>
<tr><th>${_('XML attributes')}</th></tr> <tr><th>${_('XML attributes')}</th></tr>
%for name, field in xml_attributes.items(): %for name, field in xml_attributes.items():
<tr><td style="width:25%">${name}</td><td><pre style="display:inline-block; margin: 0;">${field | h}</pre></td></tr> <tr><td style="width:25%">${name}</td><td><pre style="display:inline-block; margin: 0;">${field | h}</pre></td></tr>
%endfor %endfor
</table> </table>
category = ${category | h} category = ${category | h}
</div> </div>
%if render_histogram: %if render_histogram:
<div id="histogram_${element_id}" class="histogram" data-histogram="${histogram}"></div> <div id="histogram_${element_id}" class="histogram" data-histogram="${histogram}"></div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment