You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
{% verbatim %}
|
|
<script id="resultSearchBankTemplate" type="text/x-handlebars-template">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td width="{{ templateColWidth }}" align="{{ templateColAlign }}">Наименование:</td>
|
|
{{#if name.full}}
|
|
<td>{{ name.full }}</td>
|
|
{{else}}
|
|
<td>{{ name.payment }}</td>
|
|
{{/if}}
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td><span class="bank-short-name">{{ name.payment }}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="{{ templateColWidth }}" align="{{ templateColAlign }}">БИК:</td>
|
|
<td>
|
|
<span class="bank-bic">{{ bic }}</span>
|
|
<span class="bank-account-label">К/сч:</span>
|
|
<span class="bank-account">{{ correspondent_account }}</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</script>
|
|
{% endverbatim %} |