{# {% set title = "Dashboard" %}#} {# {% include 'include_header.html' %}#}

{{ current_user.name }}


Roles: {% for r in current_user.roles %} {{ r }} {% endfor %}

Contact Information

  • {{ current_user.email }}
  • {{ current_user.phone }}

Lab Members

Applications

{% for a in current_user.get_applications() %} {{ a.code }} {% endfor %}
{% for r in resources %}
{{ r['name'] }}
{{ r['name'] }}
{% if r['id'] in sessions %} {% set session_booking, session_id = sessions[r['id']] %} {% if session_id == 0 %} Create Session {% elif session_id > 0 %} Open Session {% endif %} {% endif %}
{% endfor %}

Upcoming Bookings

{% for bTitle, bList in bookings %} {% if bList|length > 0 %} {% for b in bList %} {% endfor %} {% else %} {% endif %} {% endfor %}
{{ bTitle }}
{{ b['owner'] }} {{ b['resource'] }} {{ b['start'] }} {{ b['end'] }}
None