mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
Closes: #1555 Signed-off-by: Nektarios Katakis <iam@nektarioskatakis.xyz> [sunil: Use the term 'network topology' consistently] [sunil: s/Router/router in template] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
49 lines
882 B
HTML
49 lines
882 B
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.pull-right {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.form button {
|
|
width: 7em;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block configuration %}
|
|
{% include "connections_list.html" %}
|
|
|
|
{% include "network_topology_main.html" %}
|
|
|
|
{% include "internet_connectivity_main.html" %}
|
|
{% endblock %}
|