Files
paperclip-wallet/assets/templates/addresslist.html
Taegus 91356cfc8f * address list addresses always in uppercase
+ copy address list address to clipboard
+ show address names under the addresses in the send screen
2019-02-03 11:13:36 +01:00

28 lines
1.2 KiB
HTML

<div id="addressToolbar">
<input id="addressListFilter" placeholder="enter search text" type="text">
<button type="button" class="btn btn-etho" id="btnClearSearchField"><i class="far fa-trash-alt"></i></button>
</div>
<div id="addressList" class="{{#if addressData.length}}walletsWrapper{{else}}noWalletsWrapper{{/if}}">
{{#if addressData.length}}
<table class="bordered" id="addressTable">
<thead>
<tr>
<th scope="col"></th>
<th scope="col">Name</th>
<th scope="col">Address</th>
</tr>
</thead>
<tbody>
{{#addressData}}
<tr>
<th scope="row" class="colEdit"><button type="button" class="btn btn-etho btnSelectToAddress" data-wallet="{{address}}" data-name="{{name}}"">Select</button></th>
<td>{{name}}</td>
<td><span class="textAddress">{{address}}</span></td>
</tr>
{{/addressData}}
</tbody>
</table>
{{else}}
<div id="noWalletsPresent">You don't have any wallets, please import them, or create a new one</div>
{{/if}}
</div>