<%inherit file="base.html"/> <%namespace name="search_box" file="search_box.html"/> <%block name="title">Bank Account List <% import time %> % for b in banks:
${b.description}
% for a in b.accounts(): <% name = a.description or a.institution.description %> <% today = time.strftime('%Y-%m-%d_%H_%M_%S') %> <% url = "/download/%s/%s_%s.ofx" % (a.guid,name,today) %> % endfor
% endfor % if not banks: ${search_box.form(error='No financial institution have been configured yet')} % endif