{% extends "base.html" %} {% from "macros.html" import page_layout, empty_state, action_button %} {% block content %} {% call page_layout("Sessions") %} {% if sessions %}
{% for session in sessions %}

{{ session }}

{{ action_button("/sessions/" + session, "View Details") }}
{% endfor %}
{% else %} {{ empty_state("No active sessions") }} {% endif %} {% endcall %} {% endblock %}