Test suite runs and passes!
[zzz-floof.git] / floof / templates / searches.mako
1 <%inherit file="base.mako" />
2
3 <ul>
4 % for search in c.searches:
5 <li><a href="${h.url_for(controller="search", action="index")}?query=${search}">${search}</a>
6     - <a href="${h.url_for(controller="search", action="display", id=search.id)}">(display on your page)</a>
7 % endfor
8 </ul>