{% extends "base.html" %} {% block title %}Boards – Location Management{% endblock %} {% block content %}

Boards

{% if current_user.is_admin() %} Add Board {% endif %}
{% if boards %}
{% for b in boards %} {% endfor %}
NameTypeHostRelaysInputsStatusLast Seen
{{ b.name }} {{ b.board_type }} {{ b.host }}:{{ b.port }} {{ b.num_relays }} {{ b.num_inputs }} {% if b.is_online %}Online{% else %}Offline{% endif %} {% if b.last_seen %}{{ b.last_seen.strftime('%Y-%m-%d %H:%M') }}{% else %}—{% endif %} {% if current_user.is_admin() %}
{% endif %}
{% else %}

No boards yet.

{% if current_user.is_admin() %} Add Board {% endif %}
{% endif %} {% endblock %}