Parent: [462c18] (diff)

Child: [8dc6aa] (diff)

Download this file

index.html    16 lines (12 with data), 407 Bytes

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