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

0001 {% if report.bank_table %}
0002 <table id="table_bank" class="table">
0003     <tbody>
0004 {% for item in report.bank_table %}
0005     {% if forloop.first %}
0006     <tr>
0007         <td><b>{{ item.1 }}</b></td>
0008         <td><b>{{ item.6 }}</b></td>
0009     </tr>    
0010     {% else %}    
0011     <tr{% if item.0 %} class="tabletotal" {% endif %}>
0012         <td>{% if item.0 %}<b>{{ item.1 }}</b>{% else %}<a href="skg://Skrooge_operation_plugin/?operationWhereClause=t_BANK='{{ item.1|encode }}'&title={{ item.1|encode }}&title_icon=view-bank-account">{{ item.1 }}</a>{% endif %}</td>
0013         <td align="right">{% if item.0 %}<b>{% endif %}{{ item.6|money|safe }}{% if item.0 %}</b>{% endif %}</td>
0014     </tr>
0015     {% endif %}        
0016 {% endfor %}     
0017     </tbody>
0018 </table>   
0019 {% endif %}