{% extends "domain_base.html" %} {% block domain_content %}

{{ _('Bulk enroll students') }}

{{ _('Paste one student per line as «display name, student id, group». Student id and group are optional. A username and a temporary password are generated for each one; download the CSV to hand them out on the first day.') }}

{% if created %}
{{ _('{0} accounts created.').format(createdCount) }}
{% if csvB64 %} {{ _('Download credentials (CSV)') }}

{{ _('The temporary passwords are only shown here and in the CSV. Keep the file safe and ask students to change it.') }}

{% endif %}
{% endif %} {% if messages.length %}
{% for m in messages %}{{ m }}
{% endfor %}
{% endif %} {% if planned.length %}
{% if created %}{% endif %} {% if created %}{% endif %} {%- for p in planned -%} {% if created %}{% endif %} {% if created %}{% endif %} {%- endfor -%}
{{ _('Name') }} {{ _('Username') }}{{ _('Password') }}{{ _('Email') }} {{ _('Student ID') }} {{ _('Group') }}{{ _('Status') }}
{{ p.displayName }} {{ p.username }}{{ p.password }}{{ p.email }} {{ p.studentId }} {{ p.group }} {% if p.uid %}UID {{ p.uid }} {% else %}{{ p.error }}{% endif %}
{% endif %}

{{ _('The file is read in your browser and its content fills the box below; a header row (with «nombre»/«name») is skipped automatically.') }}

{% endblock %}