html.mako 257 Bytes
Newer Older
1
2
3
4
5
6
7
8
<div class="qa-header">
${str(o.outcome)}
</div>
%if o.rich_data:
<div class="qa-content">
<dl>
%for field, contents in sorted(o.rich_data.items()):
<dt>${field}</dt>
9
<dd><a href="${contents}" rel="nofollow">${contents}</a></dd>
10
11
12
13
%endfor
</dl>
</div>
%endif