You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.5 KiB
HTML

<h3> Search results for: {{search_text}} </h3>
{{#no_results}}
<h4>Nothing has been found that matches the search term :-(</h4>
{{/no_results}}
<div>
{{#has_key_images}}
<h3>The search term matches key image found in the following transactions</h3>
<table class="center" style="width:80%">
{{>tx_table_head}}
{{#key_images}}
{{>tx_table_row}}
{{/key_images}}
</table>
{{/has_key_images}}
</div>
<div>
{{#has_tx_public_keys}}
<h3>The search term matches tx public key found in the following transactions</h3>
<table class="center" style="width:80%">
{{>tx_table_head}}
{{#tx_public_keys}}
{{>tx_table_row}}
{{/tx_public_keys}}
</table>
{{/has_tx_public_keys}}
</div>
<div>
{{#has_payments_id}}
<h3>The search term matches payment id found in the following transactions</h3>
<table class="center" style="width:80%">
{{>tx_table_head}}
{{#payments_id}}
{{>tx_table_row}}
{{/payments_id}}
</table>
{{/has_payments_id}}
</div>
<div>
{{#has_output_public_keys}}
<h3>The search term matches output public key found in the following transactions</h3>
<table class="center" style="width:80%">
{{>tx_table_head}}
{{#output_public_keys}}
{{>tx_table_row}}
{{/output_public_keys}}
</table>
{{/has_output_public_keys}}
</div>