Parent: [f5db7d] (diff)

Child: [ddf08c] (diff)

Download this file

index.html    18 lines (14 with data), 503 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{% 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) }}
<ul>
{% for msg in messages %}
<li>
{{msg.timestamp.isoformat(' ')}}: {{msg.sender.split('!')[0]}}: {{msg.text}}
</li>
{% endfor %}
</ul>
{% endif %}