{% extends "base.html" %} {% block app_content %}

{{ title }}

{% with user = current_user, doas = None %}
{% include "cards/account.html" %}
{% include "cards/room.html" %}
{% include "cards/device.html" %}
{% endwith %}
{% for device in current_user.other_devices %} {% with user = current_user %} {% include "cards/device_modal.html" %} {% endwith %} {% endfor %} {% endblock %}