mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
- Talk about cockpit in networking, firewall and storage apps for advanced operations. Make it a separate section instead of just description update to provider higher emphasis. - Update cockpit description too. Closes: #1809. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
58 lines
1.1 KiB
HTML
58 lines
1.1 KiB
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block page_head %}
|
|
<style type="text/css">
|
|
.connection-status-label {
|
|
display: inline-block;
|
|
width: 5.5em;
|
|
padding: 5px 0px;
|
|
text-align: center;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.connection-show-label {
|
|
display: inline-block;
|
|
width: 40%;
|
|
}
|
|
|
|
.connection-type-label {
|
|
display: inline-block;
|
|
}
|
|
|
|
.list-group-item .btn {
|
|
margin: -2px 0;
|
|
}
|
|
|
|
.form-action.pull-right {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.form-action button {
|
|
width: 7em;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block configuration %}
|
|
{% include "connections_list.html" %}
|
|
|
|
{% include "network_topology_main.html" %}
|
|
|
|
{% include "internet_connectivity_main.html" %}
|
|
|
|
<h3>{%trans "Advanced" %} </h3>
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Advanced networking operations such as bonding, bridging and VLAN
|
|
management are provided by the <a href="/_cockpit/network">Cockpit</a>
|
|
app.
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% endblock %}
|