Skip to content
reception.html 925 B
Newer Older
Bengfort's avatar
Bengfort committed
{% extends "base_with_breadcrumbs.html" %}
{% load i18n %}

{% block title %}{% trans 'Reception' %} · {{ block.super }}{% endblock %}

{% block breadcrumbs %}
    <li class="breadcrumb-item"><a href="{% url 'execution:reception' %}">{% trans "Reception" %}</a></li>
{% endblock %}

{% block content %}
    <h1>{% trans "Today's appointments" %}</h1>

    <ul class="table-list">
        {% for appointment in object_list %}
            <li class="table-list-item">
                {{ appointment.start|time }}
                <span class="h4 d-inline-block mx-1">{{ appointment.participation.subject.contact.full_name }}</span>
                {{ appointment.participation.study }}
                {{ appointment.participation.study.contact_person }}
Bengfort's avatar
Bengfort committed
            </li>
        {% empty %}
            <li class="alert alert-info">{% trans 'No appointments today' %}</li>
        {% endfor %}
    </ul>
{% endblock %}