xml edits

This commit is contained in:
gauthiier
2020-01-14 10:11:58 +01:00
parent a87ab85e29
commit 22f1a524cd
18 changed files with 696 additions and 19 deletions
+11
View File
@@ -0,0 +1,11 @@
<html>
<head>
<meta charset="utf-8">
<title>List server busy. Full digest rescheduled.</title>
<link rel="stylesheet" href="{{ url_for('static',filename='fonts.css') }}">
<link rel="stylesheet" href="{{ url_for('static',filename='lestyle.css') }}">
</head>
<body>
<div class="cor_large">List server busy.<br>Full digest rescheduled.</div>
</body>
</html>
+19
View File
@@ -0,0 +1,19 @@
<html>
<head>
<meta charset="utf-8">
<title>{{fn}}</title>
<script type="text/javascript" src="{{ url_for('static',filename='jquery-3.2.1.min.js') }}" charset="utf-8"></script>
<script type="text/javascript" src="{{ url_for('static',filename='xml.js') }}"></script>
</head>
<body>
<h1>{{fn}}</h1>
<div id="all">
<ul>
<!-- {'nbr': nbr_str, 'date': date_str, 'from': from_str, 'subject': subject_str} -->
{% for d in data %}
<li data-file={{fn}} data-nbr="{{d.nbr}}" data-date={{d.date}}><input type="text" class="nbr_input" value="{{d.nbr}}"> - {{d.from}} - {{d.subject}} - {{d.date}}<button class="update">+</button></li>
{% endfor %}
</ul>
</div>
</body>
</html>
+16
View File
@@ -0,0 +1,16 @@
<html>
<head>
<meta charset="utf-8">
<title>XML [all]</title>
</head>
<body>
<h1>XML [all]</h1>
<div id="all">
<ul>
{% for f in files %}
<li><a href="/xml/{{f}}">{{f}}</a></li>
{% endfor %}
</ul>
</div>
</body>
</html>