summaryrefslogtreecommitdiff
path: root/talermerchantdemos/survey/templates/survey_stats.html
blob: 41cb437f1fa938f23d6607f1374337f2b89d287e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "templates/base.html" %}

{% block main %}
  <div>
    <p>This page shows information about the tipping configuration of the
    merchant.  Usually this should not be visible to users.</p>
    <ul>
    <li>Reserve pub: {{ stats['reserve_pub'] }}</li>
    <li>Reserve expiration: {{ prettydate(stats['reserve_expiration']) }}</li>
    <li>Amount available {{ stats['amount_available'] }}</li>
    <li>Amount picked up {{ stats['amount_picked_up'] }}</li>
    <li>Amount authorized {{ stats['amount_authorized'] }}</li>
    <ul>
  </div>
{% endblock %}