aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/balance-overview.html
blob: 166908bbc612996f7ed539563bf1e4da47e7b8d5 (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
<!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="../lib/vendor/handlebars-v4.0.5.js" type="text/javascript"></script>
  <script src="../lib/commonHelpers.js" type="text/javascript"></script>
  <script src="balance-overview.js" type="text/javascript"></script>

  <script id="balance-template" type="text/x-handlebars-template">
    {{#each this}}
      <p>{{prettyAmountNoCurrency this}} <a>{{@key}}</a></p>
    {{else}}
      <p>Looks like your wallet is empty. Want to get some
      <a id="link-kudos" href="http://bank.demo.taler.net">KUDOS?</a>
    {{/each}}
  </script>

</head>
<body>
<div id="header" class="nav">
  <a href="balance-overview.html" class="active">Wallet</a>
  <a href="history.html">History</a>
  <a href="reserves.html">Reserves</a>
  <button id="debug">Debug!</button>
  <button id="reset">Reset!</button>
</div>

<div id="content">
</div>

</body>
</html>