Created
February 9, 2012 13:37
-
-
Save ralphbean/1780020 to your computer and use it in GitHub Desktop.
tg2app/templates/waiting.mak
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%inherit file="local:templates.master"/> | |
<script type="text/javascript" src="/js/waiting.js"></script> | |
<div id="users" class="running_list"> | |
<h2>Logged in users</h2> | |
<ul> | |
% for user in users: | |
<li>${user['name']}</li> | |
% endfor | |
</ul> | |
</div> | |
<div id="messages" class="running_list"> | |
<h2>Messages</h2> | |
<ul> | |
% for msg in messages: | |
<li>${msg['msg']}</li> | |
% endfor | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment