]> Dogcows Code - chaz/chatty/blob - root/tt/chat/view.tt
basic (non-AJAX) chat implemented
[chaz/chatty] / root / tt / chat / view.tt
1 [% META title = 'Live' -%]
2 [% BLOCK js -%]
3 $('form').validationEngine();
4 [% END -%]
5 <h1>Room: [% room.name %]</h1>
6 [% FOREACH msg IN messages -%]
7 <p>[% msg.author.username %] ([% msg.posted %]): [% msg.content %]</p>
8 [% END -%]
9 [% form.render -%]
This page took 0.029369 seconds and 4 git commands to generate.