aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/transactions.html
blob: 87e3ec44567b76a9c32475acd9881fde6a084f80 (plain)
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
<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="popup.css" type="text/css">
    <script src="../lib/util.js" type="text/javascript"></script>
    <script src="transactions.js" type="text/javascript"></script>
  </head>

  <body>
    <div id="header" class="nav">
      <a href="balance-overview.html">Wallet</a>
      <a href="transactions.html" class="active">Transactions</a>
      <a href="reserves.html">Reserves</a>
    </div>

    <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>