aboutsummaryrefslogtreecommitdiffstats
path: root/demo/templates/frag_messages.html.j2
blob: 0473d1685cf716f106499190b9f632efceb3fac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{#
Params
    messages    List of message objects to display
#}

<div id="messages">
    {% for m in messages %}
    <div class="message">
        <small>{{ m.ts }}</small> <strong>{{ m.username }}</strong>: {{ m.msg }}
    </div>
    {% endfor %}
</div>