Remove legacy tool error mako file

This commit is contained in:
guerler
2018-12-17 14:11:36 -05:00
parent 3665ef056d
commit 8eceb76ee1
-27
View File
@@ -1,27 +0,0 @@
<%inherit file="/base.mako"/>
<%def name="title()">Tool Errors</%def>
<h2>Tool Errors</h2>
<p>
Internal Tool Error log
</p>
<table class="manage-table colored" border="0" cellspacing="0" cellpadding="0" width="100%">
<tr class="header">
<td>Time</td>
<td>Phase</td>
<td>File</td>
<td>Error</td>
</tr>
%for error in tool_errors:
<tr>
<td>${error['time']}</td>
<td>${error['phase']}</td>
<td>${error['file']}</td>
<td>${error['error']}</td>
</tr>
%endfor
</table>