https://github.com/galaxyproject/galaxy
Raw File
Tip revision: b5949bcbbfbc613b0ec72ce23e4da448c9316c49 authored by Nate Coraor on 24 February 2016, 18:38:48 UTC
Update version to 15.10.2
Tip revision: b5949bc
tool_errors.mako
<%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>

back to top