${_('Accounts Export Status')}
% if c.finished:
% if c.results and c.results['f']:
${_('The export has been processed, ')}${h.link_to(_('Download the csv file'), url('accounts-export-status', taskid=c.results['id'], d='y'))}
% else:
${_('The CSV export failed: %s') % c.results['global_error']}
% endif
% else:
<%
count = session['acexport-count']
if count > 10:
count = 10
percent = h.percent_of(count, 10)
%>
${h.portable_img('imgs/ajax-pager.gif', alt="")} ${_('The request is being processed. %d%%') % percent}
% endif