taler-www

Main taler.net website
Log | Files | Refs | Submodules | README | LICENSE

pos.html.j2 (1963B)


      1 {% extends "common/base.j2" %}
      2 {% block subtitle %}{{ _("Point of Sale")}}{% endblock subtitle %}
      3 {% block head_content %}
      4 <style type="text/css">
      5   .greenbox {
      6   background-color: #5EFF64;
      7   border: solid;
      8   border-radius: 5px;
      9   padding: 0.5em;
     10   }
     11   .bluebox {
     12   background-color: #C2C6FF;
     13   border: solid;
     14   border-radius: 5px;
     15   padding: 0.5em;
     16   }
     17   .error {
     18   font-style: italic;
     19   display: none;
     20   }
     21   #install-result {
     22   font-weight: bold;
     23   }
     24 
     25   main ul li {
     26   margin-bottom: 1em;
     27   }
     28 </style>
     29 {% endblock head_content %}
     30 
     31 {% block body_content %}
     32     <!-- Jumbotron -->
     33     <div class="jumbotron">
     34       <div class="text-center">
     35       <h1 lang="en">Taler Point of Sale (PoS)</h1>
     36       </div>
     37     </div>
     38 <main id="maincontent">
     39   <div class="container">
     40 
     41     <div class="row">
     42       <div class="col-lg-12">
     43         {% trans %}
     44           This is the page for the Taler PoS App. It allows
     45           a vendor to maintain a list of products and to
     46           quickly build up Taler contracts and process Taler
     47           payments for these contracts. Its main use-case
     48           is for a mensa, cafeteria or restaurant when vending
     49           food from a menu.
     50         {% endtrans %}
     51         </a>.
     52       </div>
     53     </div> <!-- /row -->
     54 
     55     <div class="row">
     56       <div class="col-lg-6">
     57         <h2>Android 4.4 (API 18) or later</h2>
     58         <ul>
     59           <li>
     60             <a href="https://play.google.com/apps/testing/net.taler.merchantpos">
     61                {% trans %}
     62                  Install Android App from Google App Store, or
     63                {% endtrans %}
     64             </a>
     65           </li>
     66           <li>
     67             <a href="https://f-droid.org/en/packages/net.taler.merchantpos/">
     68                {% trans %}
     69                  Download App from F-Droid.org.
     70                {% endtrans %}
     71             </a>
     72           </li>
     73         </ul>
     74       </div> <!-- /col-lg-6 -->
     75 
     76     </div> <!-- /row -->
     77   </div> <!-- /container -->
     78 {% endblock body_content %}