back-up commit. probably broken.
[TownSquare.git] / townsquare / templates / user / list.mako
blob47aa4a192ba1950e8111deb90807be99c91a8324
1 <%inherit file="/base.mako"/>
3 <h1>People</h1>
5 % if c.item_list.count() > 0:
6 <ul>
7 % for p in c.item_list:
8   <li><a href="${p.url}">${p.name}</a></li>
9 % endfor
10 </ul>
11 % endif