summaryrefslogtreecommitdiff
path: root/talerblog/blog/templates
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-04 19:24:49 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-04 19:24:58 +0100
commitd10579541c10ae122f542f502b1d4c1ae8888ea7 (patch)
tree89cfcb59829a2dc9727766397cdfcbbb0a0f7eef /talerblog/blog/templates
parent8d8aade1608755824541b6151acc2111ed07db3f (diff)
downloadblog-d10579541c10ae122f542f502b1d4c1ae8888ea7.tar.gz
blog-d10579541c10ae122f542f502b1d4c1ae8888ea7.tar.bz2
blog-d10579541c10ae122f542f502b1d4c1ae8888ea7.zip
remove backoffice things (moved to backoffice.git)
Diffstat (limited to 'talerblog/blog/templates')
-rw-r--r--talerblog/blog/templates/backoffice.html80
1 files changed, 0 insertions, 80 deletions
diff --git a/talerblog/blog/templates/backoffice.html b/talerblog/blog/templates/backoffice.html
deleted file mode 100644
index b87495b..0000000
--- a/talerblog/blog/templates/backoffice.html
+++ /dev/null
@@ -1,80 +0,0 @@
-{% 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>
- <div>
- <form action="">
- <input type="text"
- placeholder="Order ID"
- class="order"></input><br>
- <input type="text"
- placeholder="WTID"
- class="transfer"
- style="visibility: hidden;"></input><br>
- <input type="text"
- placeholder="Exchange URI"
- class="transfer"
- style="visibility: hidden;"></input><br>
- <input type="radio"
- name="track-type"
- value="order"
- onclick="cherry_pick_form_order(this.parentNode)"
- checked>Track order id</input><br>
- <input type="radio"
- name="track-type"
- value="wtid"
- onclick="cherry_pick_form_transfer(this.parentNode)">Track wire transfer</input><br>
- <input type="button"
- value="submit"
- onclick='track_cherry_pick(this.parentNode)'></input>
- </form>
- </div>
- <div id="history-container">
- <table id="history" width="50%" style="visibility: hidden;">
- <col width="40">
- <col width="40">
- <col width="40">
- <tbody>
- <tr class="no-records">
- <th colspan="3">No records found</th>
- </tr>
- <tr class="headers" style="visibility: hidden">
- <th class="order-id">Order ID</th>
- <th class="amount">Amount</th>
- <th class="date">Date</th>
- </tr>
- </tbody>
- </table>
- <br/>
- <div class="loader"></div>
- </div>
-
- <div id="popup1" class="overlay">
- <div class="popup">
- <h2>
- <a class="close" href="#" onclick="close_popup();">&times;</a>
- </h2>
- <div class="track-content">
- <table>
- <tbody>
- <tr>
- <th class="wtid">WTID</th>
- <th class="amount">Amount</th>
- <th class="date">Date</th>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
-{% endblock main %}
-
-{% block styles %}
- <link rel="stylesheet" type="text/css" href="{{ url("/static/backoffice.css") }}">
-{% endblock styles %}
-
-{% block scripts %}
- <script src="{{ url('/static/backoffice.js') }}" type="application/javascript"></script>
-{% endblock scripts %}