summaryrefslogtreecommitdiff
path: root/template/pos.html.j2
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-09-15 12:18:03 +0200
committerChristian Grothoff <christian@grothoff.org>2020-09-15 12:18:03 +0200
commit74b1f0ec7295a9938d23c2c48762c79cab4a1c3f (patch)
tree5cf402834c0cca07ded56fa29887d7aeba036907 /template/pos.html.j2
parentad7a2432a4a8370377c6a842785d7cd7c85100dc (diff)
downloadwww-74b1f0ec7295a9938d23c2c48762c79cab4a1c3f.tar.gz
www-74b1f0ec7295a9938d23c2c48762c79cab4a1c3f.tar.bz2
www-74b1f0ec7295a9938d23c2c48762c79cab4a1c3f.zip
add pages for cashier and pos, modify link to wallet to point to F-Droid instead of F-Dold
Diffstat (limited to 'template/pos.html.j2')
-rw-r--r--template/pos.html.j278
1 files changed, 78 insertions, 0 deletions
diff --git a/template/pos.html.j2 b/template/pos.html.j2
new file mode 100644
index 00000000..85222c11
--- /dev/null
+++ b/template/pos.html.j2
@@ -0,0 +1,78 @@
+{% extends "common/base.j2" %}
+
+{% block head_content %}
+<style type="text/css">
+ .greenbox {
+ background-color: #5EFF64;
+ border: solid;
+ border-radius: 5px;
+ padding: 0.5em;
+ }
+ .bluebox {
+ background-color: #C2C6FF;
+ border: solid;
+ border-radius: 5px;
+ padding: 0.5em;
+ }
+ .error {
+ font-style: italic;
+ display: none;
+ }
+ #install-result {
+ font-weight: bold;
+ }
+
+ main ul li {
+ margin-bottom: 1em;
+ }
+</style>
+{% endblock head_content %}
+
+{% block body_content %}
+ <!-- Jumbotron -->
+ <div class="jumbotron">
+ <div class="text-center">
+ <h1 lang="en">Taler Point of Sale (PoS)</h1>
+ </div>
+ </div>
+
+ <div class="container">
+
+ <div class="row">
+ <div class="col-lg-12">
+ {% trans %}
+ This is the page for the Taler PoS App. It allows
+ a vendor to maintain a list of products and to
+ quickly build up Taler contracts and process Taler
+ payments for these contracts. Its main use-case
+ is for a mensa, cafeteria or restaurant when vending
+ food from a menu.
+ {% endtrans %}
+ </a>.
+ </div>
+ </div> <!-- /row -->
+
+ <div class="row">
+ <div class="col-lg-6">
+ <h2>Android 4.4 (API 18) or later</h2>
+ <ul>
+ <li>
+ <a href="https://play.google.com/apps/testing/net.taler.merchantpos">
+ {% trans %}
+ Install Android App from Google App Store, or
+ {% endtrans %}
+ </a>
+ </li>
+ <li>
+ <a href="https://f-droid.org/en/packages/net.taler.merchantpos/">
+ {% trans %}
+ Download App from F-Droid.org.
+ {% endtrans %}
+ </a>
+ </li>
+ </ul>
+ </div> <!-- /col-lg-6 -->
+
+ </div> <!-- /row -->
+ </div> <!-- /container -->
+{% endblock body_content %}