{% extends "mylab/base.html" %} {% load widget_tweaks %} {% load static %} {% load report_versions %} {% block breadcrumb %} {% endblock %} {% block breadcrumb-mobile %} {% endblock %} {% block mylab_content %}

My Lab

Import StudIP

{% if success and success is True %}
StudIP table successfully imported.
Back to MyLab

{% for row in result.itertuples %} {% endfor %}
Last name First name Username Number
{{ row.Nachname }} {{ row.Vorname }} {{ row.Nutzernamen }} {{ row.matrikelnummer|floatformat:0 }}
{% else %}

Here you can import a CSV exported from StudIP with a list of participants.


{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% render_field form.csv class+="form-control" accept=".csv" %}

{% endif %} {% endblock %}