${_('Username')} | ${_('Status')} | ${_('Errors')} |
---|---|---|
${h.link_to(result['username'], url('account-detail', userid=result['id'])) if result['id'] else result['username']} | % if result['imported']: ${h.portable_img('imgs/passed.png', alt="OK")} % else: ${h.portable_img('imgs/failed.png', alt="FAILED")} % endif | ${h.wrap_paragraphs(result['error'], 50) if result['error'] else 'None'} |
${_('The CSV import failed: %s') % c.results['global_error']} | ||
<% count = session['acimport-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)} |