repo.or.cz
/
TownSquare.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
back-up commit. probably broken.
[TownSquare.git]
/
townsquare
/
templates
/
user
/
list.mako
blob
47aa4a192ba1950e8111deb90807be99c91a8324
1
<%inherit file="/base.mako"/>
2
3
<h1>People</h1>
4
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