{% extends "base.html" %} {% load static %} {% load markdown_extras %} {% block content %}

Experiments

{% if experiments %}

{{ category.code }} - {{ category.name }}

{% endif %} {% if experiment %}

{{ experiment.code }} - {{ experiment.name }}

{% if not experiment.active %}
This experiment is currently not available.
{% else %} {% if experiment.comment %}
{{ experiment.comment }}
{% endif %} {% endif %} {{ experiment.desc | markdown | safe }}
Tutor(s):
{% for u in experiment.tutors.all %} {{ u.short_name}} {% if not forloop.last %}, {% endif %} {% endfor %}
Instructions:
{% if user.is_authenticated %} {% if experiment.instructions_url %} {{ experiment.code|lower }}.pdf {% else %} None {% endif %} {% else %} Please log in. {% endif %}
Examiner(s):
{% for u in experiment.examiners.all %} {{ u.short_name}} {% if not forloop.last %}, {% endif %} {% endfor %}
{% if user.is_authenticated and experiment.latest_instructions %} {% with instr=experiment.latest_instructions %} v{{ instr.version }} ({{ instr.date|date:"Y/m/d" }}), {{ instr.filesize_kib }} KiB {% endwith %} {% endif %}
Location:
{{ experiment.institute }}, {{ experiment.room }}
Languages:
{{ experiment.language }}
{% endif %} {% if experiment and user.is_authenticated and experiment.active %} {% if LABCOURSE.STUDENT.CAN_REQUEST_APPOINTMENT and user.is_student_now or user.is_admin %}
Request appointment for this experiment
{% endif %} {% if dates|length > 0 %}
{% for date, blocked in dates.items %} {% endfor %}
Availability in {{ semester }}
{{ date.date|date:'d.m.' }} 
{% endif %} {% if LABCOURSE.STUDENT.CAN_REQUEST_APPOINTMENT and user.is_student_now or user.is_admin or is_tutor %}

Partner search

{% for ps in partner_searches %} {% empty %} {% endfor %}
Name Email address
{{ ps.user.full_name }} {{ ps.user.email }}
No students looking for a partner this semester.
{% csrf_token %} {% if student_searching %} {% else %} {% endif %}
{% endif %} {% endif %} {% endblock %} {% block breadcrumb %} {% endblock %} {% block breadcrumb-mobile %} {% endblock %} {% block aside %} {% if experiment %} {{ experiment.code }} {% endif %} {% endblock %}