Parent: [f5db7d] (diff)

Child: [335a43] (diff)

Download this file

day.html    23 lines (19 with data), 621 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends g.theme.master %}
{% import "forgechat:templates/chat/chat_lib.html" as clib %}
{% 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 %}
{{ clib.checkout_info(c.app) }}
<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 %}