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

My Lab

This is your personal space on the Advanced Lab Course website.

{% if LABCOURSE.STUDENT.CAN_JOIN and user.is_authenticated and not user.is_student_now and not user.is_admin and not user.is_tutor and not user.is_examiner and not user.requested_join %}
Join the Lab Course!

If you are are student who wants to sign up for the lab course in this semester, please click the button above! You only need to register, if you want to do some labs this semester.

If you are a tutor or an examiner and see this, please contact the organizer.

{% endif %} {% if not user.is_authenticated %}

This is the internal area of the website for the Advanced Lab Course. It is designed to help students, tutors, and examiners organize their lab appointments and lab reports.

In order to use it, you need to log in.

{% if LABCOURSE.LOCAL_LOGIN %} Log in! {% else %} Log in! {% endif %}
{% else %} {% include "mylab/user_home.html" %} {% endif %} {% if dates.count > 0 %}

Overview of appointments

Free Booked
{% for date in dates %} {% endfor %} {% for d in data %} {% for blocked in d.appointments %} {% if blocked %} {% else %} {% endif %} {% endfor %} {% endfor %}
 {{ date.date|date:'d/m' }}
{{ d.experiment.code }}   
{% endif %} {% endblock %}