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

0001 {% if report.bank_table %}
0002 <table id="table_bank" class="table">
0003     <thead>
0004     <tr class="tabletitle">
0005     <th align="center">{{ report.bank_table.0.1 }}</th>
0006     <th align="center">{{ report.bank_table.0.2 }}</th>
0007     <th align="center">{{ report.bank_table.0.3 }}</th>
0008     <th align="center">{{ report.bank_table.0.4 }}</th>
0009     <th align="center">{{ report.bank_table.0.5 }}</th>
0010     <th align="center">{{ report.bank_table.0.6 }}</th>
0011     <th align="center">{{ report.bank_table.0.7 }}</th>
0012     </tr>
0013     </thead>
0014     <tbody>    
0015 {% for item in report.bank_table %}
0016     {% if forloop.first %}
0017     {% else %}    
0018     <tr{% if item.0 %} class="tabletotal" {% endif %}>
0019         <td align="left">{% if item.8 %}<img src="file://{{ item.8 }}" style="vertical-align:middle;width: 20px; height: auto;" />{% endif %}{% 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>
0020         <td align="right">{% if item.0 %}<b>{% endif %}{{ item.2|money|safe }}{% if item.0 %}</b>{% endif %}</td>
0021         <td align="right">{% if item.0 %}<b>{% endif %}{{ item.3|money|safe }}{% if item.0 %}</b>{% endif %}</td>
0022         <td align="right">{% if item.0 %}<b>{% endif %}{{ item.4|percent|safe }}{% if item.0 %}</b>{% endif %}</td>
0023         <td align="right">{% if item.0 %}<b>{% endif %}{{ item.5|money|safe }}{% if item.0 %}</b>{% endif %}</td>
0024         <td align="right">{% if item.0 %}<b>{% endif %}{{ item.6|money|safe }}{% if item.0 %}</b>{% endif %}</td>
0025         <td align="right">{% if item.0 %}<b>{% endif %}{{ item.7|percent|safe }}{% if item.0 %}</b>{% endif %}</td>
0026     </tr>
0027     {% endif %}        
0028 {% endfor %}     
0029     </tbody>
0030 </table>   
0031 {% endif %}