Child: [462c18] (diff)

Download this file

day.html    19 lines (15 with data), 585 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
{% extends 'jinja_master/master.html' %}
{% 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>
<a href="{{prev}}">Earlier</a>...
<a href="{{next}}">Later</a><br/>
<ul>
{% for msg in messages %}
<li id="{{msg._id}}">
{{msg.html_text|safe}}
</li>
{% endfor %}
</ul>
{% endblock %}