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>
|
||||
Reference in New Issue
Block a user