aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/history.html
diff options
context:
space:
mode:
Diffstat (limited to 'extension/popup/history.html')
-rw-r--r--extension/popup/history.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/extension/popup/history.html b/extension/popup/history.html
new file mode 100644
index 000000000..dccc84605
--- /dev/null
+++ b/extension/popup/history.html
@@ -0,0 +1,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>