export
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Chapter: {{chapter.title}}</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static',filename='lestyle.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<h1>{{chapter.title}}</h1>
|
||||
<h2>{{chapter.desc}}</h2>
|
||||
<div id="all">
|
||||
{% for m in chapter.mails.mail %}
|
||||
<div class="mail">
|
||||
<hr>
|
||||
<div class="header">
|
||||
<div class="field">From: {{m.from}}</div>
|
||||
<div class="field">To: {{m.to}}</div>
|
||||
<div class="field">Date: {{m.date}}</div>
|
||||
<div class="field">Subject: {{m.subject}}</div>
|
||||
</div>
|
||||
<div class="payload">
|
||||
{{m.content}}
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Exports [all]</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Exports [all] - [<a href="/search" target="_blank">SEARCH</a>, <a href="/tags" target="_blank">TAGS</a>]</h1>
|
||||
<div id="all">
|
||||
<ul>
|
||||
{% for f in files %}
|
||||
<li><a href="/ex/{{f}}">{{f}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -7,11 +7,10 @@
|
||||
<script type="text/javascript" src="{{ url_for('static',filename='tags_w_lists.js') }}"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Selection [tags w lists]</h1>
|
||||
<h1>Selection [tags w lists] - [<a href="/search" target="_blank">SEARCH</a>, <a href="/tags" target="_blank">TAGS</a>]</h1>
|
||||
<hr>
|
||||
<h2><a href="/search" target="_blank">SEARCH</a></h2>
|
||||
<h2><a href="/tags" target="_blank">TAGS</a></h2>
|
||||
<!-- <button id="commit">commit</button> -->
|
||||
<div id="status">Ok</div>
|
||||
<button id="export_all">export all</button>
|
||||
<div id="all">
|
||||
{% for v in tags %}
|
||||
<hr>
|
||||
@@ -19,8 +18,10 @@
|
||||
<form class="tag_item" id="{{v.tag}}" method="post" data-tagid="{{v.tag}}">
|
||||
<input name="tag" class="tagedit" type="text" value="{{v.tag}}">
|
||||
<textarea name="desc">{{v.desc}}</textarea>
|
||||
<input name="exportpath" class="tagedit export" type="text" value="{{v.export}}">
|
||||
<input type="submit" class="update" value="update">
|
||||
<input type="submit" class="delete" value="delete">
|
||||
<input type="submit" class="export" value="export">
|
||||
</form>
|
||||
<lists>
|
||||
<ul>
|
||||
|
||||
Reference in New Issue
Block a user