{% extends "base.html" %} {% block body %}
{% let navbar_item = "index" %} {% include "navbar.html" %}

Dashboard

{% for (room_title, group) in actuals %}

{% match room_title %}{% when Some with (room_title) %}{{ room_title }}{% else %}No room{% endmatch %}

{% for actual in group %} {% include "actual.html" %} {% endfor %}
{% endfor %} {% endblock %}