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

My Lab

Close lab appointment

{% if success and success is True %}
Appointment successfully closed.
Back to MyLab

Appointment closed
Experiment: {% experiment_link appointment.experiment True %}
Date: {{ appointment.date.date|date:"l, j F Y" }}
Student(s): {% for report in reports %} {% user_link report.student fullname=True %}
{% endfor %}
{% else %}

Here you can confirm that a lab has actually taken place according to the arranged appointment. Please check carefully that you selected the correct one by examining the name of the experiment and the date.

You can also deselect any student that did not participate in the lab. For all selected students, pending reports will be created.


{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% render_field form.students %}

{% endif %} {% endblock %}