File indexing completed on 2024-06-16 04:47:24

0001 {{ report.advice|dump }}
0002 <table id="table_advice" class="table">
0003     <thead>
0004     <tr class="tabletitle">
0005     <th align="center">Priority</th>
0006     <th align="center">Short message</th>
0007     <th align="center">Long message</th>
0008     </tr>
0009 {% for item in report.advice %}  
0010       <tr{% if item.0 %} class="tabletotal" {% endif %}>
0011       <td>{{ item.priority }}</td>
0012       <td>{{ item.shortMessage|safe }}</td>
0013       <td>{{ item.longMessage|safe }}</td>
0014       </tr>      
0015 {% endfor %}   
0016     </tbody>
0017 </table>