Skip to content

Commit

Permalink
Merge pull request #3461 from unicef/33317_table_layout
Browse files Browse the repository at this point in the history
[ch33317] Fix bank details value not showing inside table
  • Loading branch information
ntrncic authored Mar 16, 2023
2 parents 66c0ad8 + 1abe26f commit 1e9e4ae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/etools/applications/partners/templates/pca/english_pdf.html
Original file line number Diff line number Diff line change
Expand Up @@ -627,36 +627,36 @@
</tr>
<tr>
<td style="width: 45%;">Bank Name</td>
<td>{{ bank_detail.bank_name }}</td>
<td style="width: 55%;">{{ bank_detail.bank_name }}</td>
</tr>
<tr>
<td style="width: 45%;">Bank Address</td>
<td>{{ bank_detail.bank_address }}</td>
<td style="width: 55%;">{{ bank_detail.bank_address }}</td>
</tr>
<tr>
<td style="width: 45%;">Account Title</td>
<td>{{ bank_detail.account_title }}</td>
<td style="width: 55%;">{{ bank_detail.account_title }}</td>
</tr>
<tr>
<td style="width: 45%;">Account No.</td>
<td>{{ bank_detail.account_number }}</td>
<td style="width: 55%;">{{ bank_detail.account_number }}</td>
</tr>
<tr>
<td style="width: 45%;">Account Currency</td>
<td>{{ bank_detail.account_currency }}</td>
<td style="width: 55%;">{{ bank_detail.account_currency }}</td>
</tr>
<tr>
<td style="width: 45%;">Routing Details <br/> SWIFT/IBAN</td>
<td>{{ bank_detail.routing_details }}</td>
<td style="width: 55%;">{{ bank_detail.routing_details }}</td>
</tr>
<tr>
<td style="width: 45%;">Bank Contact Person</td>
<td>{% firstof bank_detail.bank_contact_person '&nbsp;' %}</td>
<td style="width: 55%;">{% firstof bank_detail.bank_contact_person '&nbsp;' %}</td>
</tr>
{% if bank_detail.tax_number_5 %}
<tr>
<td style="width: 45%;">Hawala Banking Details</td>
<td>{{ bank_detail.tax_number_5 }}</td>
<td style="width: 55%;">{{ bank_detail.tax_number_5 }}</td>
</tr>
{% endif %}
</table>
Expand Down

0 comments on commit 1e9e4ae

Please sign in to comment.