mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-25 08:43:36 +00:00
62 lines
2.1 KiB
HTML
62 lines
2.1 KiB
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load plinth_extras %}
|
|
{% load static %}
|
|
|
|
{% block toolbar %}
|
|
|
|
<section class="toolbar">
|
|
<div class="btn-toolbar" role="toolbar">
|
|
|
|
{% if app_info.clients %}
|
|
{% with client_platforms=app_info.clients|clients_get_platforms %}
|
|
{% if client_platforms.web|length == 1 %}
|
|
<a target='_blank' rel="noopener noreferrer"
|
|
class="btn btn-primary" role="button" data-turbolinks="false"
|
|
{% if not enabled %} disabled="disabled"
|
|
{% else %} href="{{ client_platforms.web.0.url }}"
|
|
{% endif %} data-turbolinks="false">
|
|
{% trans "Launch web client" %}
|
|
<span class="fa fa-external-link"></span>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% if client_platforms.web|length > 1 or client_platforms.other %}
|
|
<button type="button" data-toggle="collapse" data-target="#clients"
|
|
class="btn btn-default collapsed collapsible-button">
|
|
<span class="fa fa-chevron-right fa-fw" aria-hidden="true"></span>
|
|
{% trans "Client Apps" %}
|
|
</button>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% if has_diagnostics %}
|
|
<!-- Single button -->
|
|
<div class="btn-group button-extra-actions">
|
|
<button type="button" class="btn btn-default dropdown-toggle"
|
|
data-toggle="dropdown" aria-haspopup="true"
|
|
aria-expanded="false">
|
|
<span class="fa fa-cog" aria-hidden="true"></span>
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu">
|
|
<li>
|
|
{% include "diagnostics_button.html" with app_id=app_id enabled=is_enabled %}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
<div class="toolbar-collapsed-content">
|
|
{% include "clients.html" with clients=app_info.clients enabled=is_enabled %}
|
|
</div>
|
|
</section>
|
|
|
|
{% endblock toolbar %}
|