<%inherit file="base.html"/> <%namespace name="search_box" file="search_box.html"/> <%block name="title">Bank Account List <% import time %>
% for a in accounts: <% name = a.long_description() %> <% today = time.strftime('%Y-%m-%d_%H_%M_%S') %> <% url = "/download/%s/%s_%s.ofx" % (a.local_id(),name,today) %> <% type = str(a.__class__) %>
${name}
${type}
10 days 30 days 60 days 90 days    Delete
% endfor
% if not accounts: ${search_box.form(error='No financial institution have been configured yet')} % else:
Add account
% endif