aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/history.html
blob: dccc846051fad1953b10162d80afec7c5050292a (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
<!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="history.js" type="text/javascript"></script>

  <script id="balance-template" type="text/x-handlebars-template">
    {{#each transactions}}
      <p>bla</p>
    {{else}}
      There's nothing here.  Go to
      our <a href="http://demo.taler.net">demo site</a> to try GNU Taler.
    {{/each}}
  </script>
</head>

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

<div id="content">
  (Loading...)
</div>

</body>
</html>