${_('Username')} | ${_('Status')} | ${_('Errors')} |
---|---|---|
${h.link_to(result['username'], url('account-detail', userid=result['id'])) if result['id'] else result['username']} | ${functions.item_status(result['imported'])} | ${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)}
|