## -*- coding: utf-8 -*-
<%inherit file="navbar.tmpl"/>
<%block name="core">
Your attributes:
% if not searchresult is None:
%for attr in sorted(attrs_list.keys(), key=lambda attr: attrs_list[attr]['weight']):
% if attr in searchresult:
<%
value = searchresult[attr]
if type(value) is list:
value = ', '.join(value)
%>
${attrs_list[attr]['display_name']}: |
${value} |
% endif
% endfor
%endif
%block>