-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_results.html
181 lines (118 loc) · 3.94 KB
/
search_results.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<h3> Search results for: {{search_text}} </h3>
{{#no_results}}
<h4 style="margin-bottom:2px">Nothing in the blockchain has been found that matches the search term :-(</h4>
<h5 style="margin:2px">Note: there might be some delay when newest txs become searchable</h5>
{{/no_results}}
{{#to_many_results}}
<h3>More than 500 results found. Showing no more than this</h3>
{{/to_many_results}}
<div>
{{#has_key_images}}
<h3>The search term matches key image found in the following transaction</h3>
<table class="center" style="width:90%">
{{>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 of the following transaction</h3>
<table class="center" style="width:90%">
{{>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 transaction(s)</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#payments_id}}
{{>tx_table_row}}
{{/payments_id}}
</table>
{{/has_payments_id}}
</div>
{{#has_encrypted_payments_id}}
<h3>The search term matches encrypted payment id found in the following transaction(s)</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#encrypted_payments_id}}
{{>tx_table_row}}
{{/encrypted_payments_id}}
</table>
{{/has_encrypted_payments_id}}
</div>
<div>
{{#has_output_public_keys}}
<h3>The search term matches output public key found in the following transaction(s)</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#output_public_keys}}
{{>tx_table_row}}
{{/output_public_keys}}
</table>
{{/has_output_public_keys}}
</div>
<div>
{{#has_output_public_keys_based_on_global_idx}}
<h3>The search term matches global index of an output in the following transaction(s)</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#output_public_keys_based_on_global_idx}}
{{>tx_table_row}}
{{/output_public_keys_based_on_global_idx}}
</table>
{{/has_output_public_keys_based_on_global_idx}}
</div>
<div>
{{#has_output_public_keys_based_on_amount_idx}}
<h3>The search term matches amount index and an amount of an output
in the following transaction(s)</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#output_public_keys_based_on_amount_idx}}
{{>tx_table_row}}
{{/output_public_keys_based_on_amount_idx}}
</table>
{{/has_output_public_keys_based_on_amount_idx}}
</div>
<div>
{{#has_tx_in_the_minute}}
<h3>Transactions performed in the given minute</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#tx_in_the_minute}}
{{>tx_table_row}}
{{/tx_in_the_minute}}
</table>
{{/has_tx_in_the_minute}}
</div>
<div>
{{#has_tx_in_the_hour}}
<h3>Transactions performed in the given hour</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#tx_in_the_hour}}
{{>tx_table_row}}
{{/tx_in_the_hour}}
</table>
{{/has_tx_in_the_hour}}
</div>
<div>
{{#has_tx_in_the_day}}
<h3>Transactions performed in the given day</h3>
<table class="center" style="width:90%">
{{>tx_table_head}}
{{#tx_in_the_day}}
{{>tx_table_row}}
{{/tx_in_the_day}}
</table>
{{/has_tx_in_the_day}}
</div>