mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- Ensure that .sr-only is replaced with newer classes. - Ensure that icons are present for all alerts. - Use flex-box for display of icons on the left center of the alert. - .close has been renamed to .btn-close. - × is no longer required for close buttons. Tests: - Visually verify all the changes by triggering them with code changes. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
69 lines
1.7 KiB
HTML
69 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{# Template to display/configure an App, used by views.AppView #}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load plinth_extras %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "app-header.html" %}
|
|
|
|
{% include "toolbar.html" with enabled=is_enabled %}
|
|
|
|
{% block subsubmenu %}
|
|
{% if subsubmenu %}
|
|
{% show_subsubmenu subsubmenu %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block status %}
|
|
{% if is_running is not None and not is_running %}
|
|
<div id='service-not-running' role="alert"
|
|
class="alert alert-danger d-flex align-items-center {{ is_enabled|yesno:',d-none' }}">
|
|
<div class="me-2">
|
|
<span class="fa fa-exclamation-triangle" aria-hidden="true"></span>
|
|
<span class="visually-hidden">{% trans "Caution:" %}</span>
|
|
</div>
|
|
<div>
|
|
{% blocktrans trimmed with service_name=app_info.name %}
|
|
Service <em>{{ service_name }}</em> is not running.
|
|
{% endblocktrans %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block internal_zone %}
|
|
{% include "internal-zone.html" %}
|
|
{% endblock %}
|
|
|
|
{% block port_forwarding_info %}
|
|
{% include "port-forwarding-info.html" with service_name=app_info.name %}
|
|
{% endblock %}
|
|
|
|
{% block configuration %}
|
|
{% if form %}
|
|
<h3>{% trans "Configuration" %}</h3>
|
|
|
|
<form id="app-form" class="form form-configuration" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form|bootstrap }}
|
|
|
|
<input type="submit" class="btn btn-primary"
|
|
value="{% trans "Update setup" %}"/>
|
|
</form>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block extra_content %}
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|