mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-04 05:13:23 -04:00
67 lines
2.8 KiB
HTML
67 lines
2.8 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h1 class="page-header">
|
|
Integrations
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
|
|
{% if context.is_balena %}
|
|
<div class="row">
|
|
<div id="balena-section" class="col-12">
|
|
<h1 class="page-header">
|
|
Balena
|
|
</h1>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Option</th>
|
|
<th scope="col">Value</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">Device Name</th>
|
|
<td>{{ context.balena_device_name_at_init }}</td>
|
|
<td>The name of the device on first initialisation.</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Device UUID</th>
|
|
<td>{{ context.balena_device_id }}</td>
|
|
<td>The unique identification number for the device. This is used to identify it on
|
|
balena.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">App ID</th>
|
|
<td>{{ context.balena_app_id }}</td>
|
|
<td>ID number of the balena application the device is associated.</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">App Name</th>
|
|
<td>{{ context.balena_app_name }}</td>
|
|
<td>The name of the balena application the device is associated with.</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Supervisor Version</th>
|
|
<td>{{ context.balena_supervisor_version }}</td>
|
|
<td>The current version of the supervisor agent running on the device.</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Host OS Version</th>
|
|
<td>{{ context.balena_host_os_version }}</td>
|
|
<td>The version of the host OS.</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|