Format "all objects" table correctly

This commit is contained in:
Sajith Sasidharan 2020-07-15 16:20:36 -04:00
parent 07c24dbe59
commit b5a465cc8d

View File

@ -71,12 +71,12 @@
<div> <div>
<table t:render="all_objects"> <table t:render="all_objects">
<tr t:pattern="header"> <tr t:pattern="header">
<td>Relative Path</td> <th>Relative Path</th>
<td>Healthy Pre-Repair</td> <th>Healthy Pre-Repair</th>
<td>Recoverable Pre-Repair</td> <th>Recoverable Pre-Repair</th>
<td>Healthy Post-Repair</td> <th>Healthy Post-Repair</th>
<td>Storage Index</td> <th>Storage Index</th>
<td>Summary</td> <th>Summary</th>
</tr> </tr>
<tr t:render="item"> <tr t:render="item">
<td><t:slot name="path"/></td> <td><t:slot name="path"/></td>
@ -86,6 +86,9 @@
<td><t:slot name="storage_index"/></td> <td><t:slot name="storage_index"/></td>
<td><t:slot name="summary"/></td> <td><t:slot name="summary"/></td>
</tr> </tr>
<tr t:render="empty">
<td>Nothing to report yet.</td>
</tr>
</table> </table>
</div> </div>