File indexing completed on 2024-05-26 05:10:35

0001 <table id="table_unit" class="table">
0002     <thead>
0003     <tr class="tabletitle">
0004     <th align="center">{{ report.unit_table.0.1 }}</th>
0005     <th align="center">{{ report.unit_table.0.2 }}</th>
0006     <th align="center">{{ report.unit_table.0.3 }}</th>
0007     <th align="center">{{ report.unit_table.0.4 }}</th>
0008     </tr>
0009     </thead>
0010     <tbody>
0011   {% for item in report.unit_table %}
0012     {% if forloop.first %}
0013     {% else %}        
0014     <tr>
0015     <td><a href="skg://Skrooge_operation_plugin/?operationWhereClause=t_UNIT='{{ item.5|encode }}'&title=Transactions with unit equal to '{{ item.1|encode }}'&title_icon=view-currency-list&currentPage=-1">{{ item.1 }} ({{ item.5 }})</a></td>
0016     <td align="right">{{ item.2|money|safe }}</td>
0017     <td align="right">{{ item.3|money|safe }}</td>
0018     <td align="right">{{ item.4|percent|safe }}</td>
0019     </tr>
0020     {% endif %}          
0021   {% endfor %}  
0022     </tbody>  
0023 </table>