mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Manual update is placed in a new section under Configuration. Tests: - Ran manual update with packages to be upgraded. - Busy indicator is shown as expected. - Log display button appears when logs are available. - Logs can be expanded and collapsed. Closes: #1771. Signed-off-by: James Valleroy <jvalleroy@mailbox.org> [sunil: Change the update now button into default priority button] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
63 lines
1.5 KiB
HTML
63 lines
1.5 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 {{ is_enabled|yesno:',hidden' }}">
|
|
{% blocktrans trimmed with service_name=app_info.name %}
|
|
Service <em>{{ service_name }}</em> is not running.
|
|
{% endblocktrans %}
|
|
</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 %}
|