wallet-core/extension/popup/transactions.html

53 lines
1.4 KiB
HTML
Raw Normal View History

2015-12-03 20:07:03 +01:00
<!DOCTYPE html>
2015-11-25 20:41:31 +01:00
2015-12-03 20:07:03 +01:00
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css" type="text/css">
2015-12-04 22:47:44 +01:00
<script src="../lib/util.js" type="text/javascript"></script>
2015-12-03 20:07:03 +01:00
<script src="transactions.js" type="text/javascript"></script>
</head>
2015-11-25 20:41:31 +01:00
2015-12-03 20:07:03 +01:00
<body>
<div id="header" class="nav">
2015-12-16 17:52:25 +01:00
<a href="balance-overview.html">Wallet</a>
2015-12-03 20:07:03 +01:00
<a href="transactions.html" class="active">Transactions</a>
<a href="reserves.html">Reserves</a>
</div>
2015-11-25 20:41:31 +01:00
2015-12-03 20:07:03 +01:00
<div id="content">
<table id="transactions-table" class="hidden">
<thead>
<tr>
<th>Date</th>
<th>Amount</th>
<th>Status</th>
<th></th>
</tr>
</thead>
<tbody>
<!--
<tr>
<td class="date">2015-12-21 13:37</td>
<td class="amount">42 EUR</td>
<td class="status">Completed</td>
<td class="contract"><button>Contract</button></td>
</tr>
<tr>
<td class="date">2015-12-22 10:01</td>
<td class="amount">23 USD</td>
<td class="status">Pending</td>
<td class="contract"><button>Contract</button></td>
</tr>
-->
</tbody>
</table>
<p id="no-transactions">
There are no transactions to show.
</p>
</div>
</body>
</html>