<%inherit file="/template.html" /> <%namespace name="components" file="/components.html"/> <%def name="title()">${_("Admin: Import Users")} <%block name="full_teaser"> ${self.success()} <%def name="success()">

${_("Imported Users")}

%if c.errors:

(${_('But some errors occured')})

%endif %if c.instance is None:

${_(u'You successfully created the following users:')}

%else:

${_(u'You successfully created the following users and added them as Members to the instance "%s":') %c.instance.label}

%endif %for user in c.users:
  • ${user.user_name} / ${user.display_name} / ${user.email}
  • %endfor %if c.errors:

    ${_('The following errors happend while creating the users')}

    %if c.not_created:

    ${_('These users could not be created:')} ${', '.join([u for u in c.not_created])}

    %endif %if c.not_mailed:

    ${_('These users were created, but we could not send out mails:')} ${', '.join([u for u in c.not_mailed])}

    %endif %endif