summaryrefslogtreecommitdiff
path: root/talerdonations/donations/templates/backoffice.html
blob: 719d4b6953cd99176e4897331f6197764491da74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% extends "templates/base.html" %}
{% block main %}
  <h1>Backoffice</h1>
  <p>This page simulates a backoffice facility.  Through it,
  the user can see the money flow from Taler transactions to
  wire transfers and viceversa.</p>
  <table id="history" width="60%" style="visibility: hidden;">
    <tbody>
      <tr>
        <th>Order ID</th>
        <th>Summary</th>
        <th>Amount</th>
        <th>Date</th>
      </tr>
    </tbody>
  </table>
  <div class="loader"></div>
  <div id="popup1" class="overlay">
    <div class="popup">
      <h2>
        <a class="close" href="/backoffice">&times;</a>
      </h2>
      <div class="track-content">
        <table>
          <tbody>
            <tr>
              <th>WTID</th>
              <th>Amount</th>
              <th>Coin</th>
              <th>Date</th>
            </tr>
          </tbody>
        </table>
      </div>
    </div>
  </div>
  <a href="#" onclick="get_history(true);" style="margin-left: 90%;">Fake scroll</a>
{% endblock main %}

{% block styles %}
  <link rel="stylesheet" type="text/css" href="{{ url("/static/popup.css") }}">
{% endblock styles %}

{% block scripts %}
  <script src="{{ url('/static/backoffice.js') }}" type="application/javascript"></script>
{% endblock scripts %}