Parent: [462c18] (diff)

Child: [8dc6aa] (diff)

Download this file

day.html    21 lines (17 with data), 525 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
{% block content %}
<h2>Log for {{day.strftime('%Y-%m-%d')}}</h2>
<div class="grid-19">
<a href="{{prev}}">Earlier</a>...
<a href="{{next}}">Later</a>
</div>
<ul>
{% for msg in messages %}
<li id="{{msg._id}}">
{{msg.html_text|safe}}
</li>
{% endfor %}
</ul>
{% endblock %}