better presentation

This commit is contained in:
Christophe Benz 2010-04-27 12:24:07 +02:00 committed by Romain Bignon
commit c272634a14
2 changed files with 13 additions and 3 deletions

View file

@ -14,7 +14,14 @@
<div id="results">
% for backend, items in results.iteritems():
<h2>${backend}</h2>
${items}
<ul>
% for item in items:
<li>
<a href="${item['page_url']}">${item['title']}</a>
## (<a href="${item['url']}"><em>download</em></a>)
</li>
% endfor
</ul>
% endfor
</div>
</%def>