Skip to content

Instantly share code, notes, and snippets.

@ralphbean
Created February 9, 2012 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ralphbean/1780020 to your computer and use it in GitHub Desktop.
Save ralphbean/1780020 to your computer and use it in GitHub Desktop.
tg2app/templates/waiting.mak
<%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