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