2019-02-10 13:00:35 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/flags/flags.css') }}"/>
|
2019-04-02 21:48:24 +00:00
|
|
|
|
|
|
|
<div class="container">
|
2019-02-10 13:00:35 +00:00
|
|
|
<div class="panel panel-success" id="asdf">
|
|
|
|
<div class="panel-heading"><h3 class="panel-title">Devices</h3></div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<table class="datatable table table-striped table-bordered">
|
|
|
|
<tr>
|
|
|
|
<th>Receiver</th>
|
|
|
|
<th>Aircrafts</th>
|
|
|
|
<th>Beacons</th>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
{% for receiverstat in receiverstats %}
|
|
|
|
<tr>
|
2019-03-30 16:50:29 +00:00
|
|
|
<td><img src="{{ url_for('static', filename='img/Transparent.gif') }}" class="flag flag-{{ receiverstat.receiver.country.iso2|lower }}" alt="{{ receiverstat.receiver.country.iso2 }}"/> {{ receiverstat.receiver.name }}</td>
|
2019-02-10 13:00:35 +00:00
|
|
|
<td>{{ receiverstat.aircraft_count }}</td>
|
|
|
|
<td>{{ receiverstat.beacon_count }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|