summaryrefslogtreecommitdiff
path: root/talersurvey/survey/templates/survey_stats.html
blob: 62c77dd2aafb52d2d34a049104d7a6bcda2fb35d (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: {{ 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 %}