-
+
Sbot
{% if sbot_is_online %} ONLINE {% else %} OFFLINE {% endif %}
diff --git a/peach-web/templates/index.html.tera b/peach-web/templates/home.html.tera
similarity index 73%
rename from peach-web/templates/index.html.tera
rename to peach-web/templates/home.html.tera
index b7142ae..14edce6 100644
--- a/peach-web/templates/index.html.tera
+++ b/peach-web/templates/home.html.tera
@@ -6,21 +6,21 @@
-
+
-
+
-
+
@@ -30,23 +30,23 @@
-
+
-
+
-
+
-
+
-
+
diff --git a/peach-web/templates/messages.html.tera b/peach-web/templates/messages.html.tera
deleted file mode 100644
index 394f0b0..0000000
--- a/peach-web/templates/messages.html.tera
+++ /dev/null
@@ -1,12 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-
-
- {% include "snippets/flash_message" %}
-
- {% include "snippets/noscript" %}
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/nav.html.tera b/peach-web/templates/nav.html.tera
index 33c50e7..e89e50a 100644
--- a/peach-web/templates/nav.html.tera
+++ b/peach-web/templates/nav.html.tera
@@ -22,8 +22,8 @@
-
-
+
+
{%- endblock nav -%}
diff --git a/peach-web/templates/network_add.html.tera b/peach-web/templates/network_add.html.tera
deleted file mode 100644
index aaa47ad..0000000
--- a/peach-web/templates/network_add.html.tera
+++ /dev/null
@@ -1,23 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-
-
-
- {% include "snippets/flash_message" %}
-
- {% include "snippets/noscript" %}
-
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/network_card.html.tera b/peach-web/templates/network_card.html.tera
deleted file mode 100644
index aac40c4..0000000
--- a/peach-web/templates/network_card.html.tera
+++ /dev/null
@@ -1,164 +0,0 @@
-{%- extends "nav" -%}
-
-{%- block card %}
-
- {%- if ap_state == "up" %}
-
-
-
-
-
-
-
-
-
-
ONLINE
-
-
-
-
-
MODE
-
Access Point
-
SSID
-
peach
-
IP
-
{{ ap_ip }}
-
-
-
-
-
- {% include "snippets/flash_message" %}
-
-
-
-
-
-
-
-
-
DEVICES
-
-
-
-
- {%- if ap_traffic -%}
- {{ ap_traffic.received }}
- {{ ap_traffic.rx_unit }}
- {%- else -%}
-
-
- {%- endif -%}
-
-
DOWNLOAD
-
-
-
-
- {%- if ap_traffic -%}
- {{ ap_traffic.transmitted }}
- {{ ap_traffic.tx_unit }}
- {%- else -%}
-
-
- {%- endif -%}
-
-
UPLOAD
-
-
-
-
- {%- else %}
-
-
-
- {%- if wlan_state == "up" %}
-
-
-
-
-
-
-
ONLINE
- {%- else %}
-
-
-
-
OFFLINE
- {%- endif %}
-
-
-
-
-
MODE
-
WiFi Client
-
SSID
-
{{ wlan_ssid }}
-
IP
-
{{ wlan_ip }}
-
-
-
-
-
- {% include "snippets/flash_message" %}
-
-
-
-
-
-
-
- {% if wlan_rssi %}{{ wlan_rssi }}{% else %}0{% endif %}%
-
-
SIGNAL
-
-
-
-
- {%- if wlan_traffic %}
-
- {{ wlan_traffic.received }}
- {{ wlan_traffic.rx_unit }}
- {%- else %}
-
- 0
- MB
- {%- endif %}
-
-
DOWNLOAD
-
-
-
-
- {%- if wlan_traffic %}
-
- {{ wlan_traffic.transmitted }}
- {{ wlan_traffic.tx_unit }}
- {%- else %}
-
- 0
- MB
- {%- endif %}
-
-
UPLOAD
-
-
-
-
-
- {%- endif -%}
-{%- endblock card -%}
diff --git a/peach-web/templates/network_detail.html.tera b/peach-web/templates/network_detail.html.tera
deleted file mode 100644
index c58b5de..0000000
--- a/peach-web/templates/network_detail.html.tera
+++ /dev/null
@@ -1,76 +0,0 @@
-{%- extends "nav" -%}
-{%- block card -%}
- {%- if wlan_networks -%}
- {%- for ssid, ap in wlan_networks -%}
- {# select only the access point we are interested in #}
- {%- if ssid == selected %}
-
-
-
-
-
-
-
-
-
{% if ssid == wlan_ssid %}CONNECTED{% elif ap.state == "Available" %}AVAILABLE{% else %}NOT IN RANGE{% endif %}
-
-
-
-
-
SSID
-
{{ ssid }}
-
SECURITY
-
{% if ap.detail %}{% if ap.detail.protocol != "" %}{{ ap.detail.protocol }}{% else %}None{% endif %}{% else %}Unknown{% endif %}
-
SIGNAL
-
{% if ap.signal %}{{ ap.signal }}%{% else %}Unknown{% endif %}
-
-
-
-
-
-
- {% include "snippets/flash_message" %}
-
-
-
- {%- endif -%}
- {%- endfor -%}
- {%- endif -%}
-{%- endblock card -%}
diff --git a/peach-web/templates/network_list.html.tera b/peach-web/templates/network_list.html.tera
deleted file mode 100644
index 45d8227..0000000
--- a/peach-web/templates/network_list.html.tera
+++ /dev/null
@@ -1,38 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-{%- endblock card -%}
diff --git a/peach-web/templates/network_modify.html.tera b/peach-web/templates/network_modify.html.tera
deleted file mode 100644
index 3c9b18c..0000000
--- a/peach-web/templates/network_modify.html.tera
+++ /dev/null
@@ -1,21 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-
-
-
- {% include "snippets/flash_message" %}
-
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/network_usage.html.tera b/peach-web/templates/network_usage.html.tera
deleted file mode 100644
index 2c0ac65..0000000
--- a/peach-web/templates/network_usage.html.tera
+++ /dev/null
@@ -1,47 +0,0 @@
-{%- extends "nav" -%}
-{%- block card -%}
-
-
-
-{%- endblock card %}
diff --git a/peach-web/templates/password/change_password.html.tera b/peach-web/templates/password/change_password.html.tera
deleted file mode 100644
index f4414a6..0000000
--- a/peach-web/templates/password/change_password.html.tera
+++ /dev/null
@@ -1,50 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/password/forgot_password.html.tera b/peach-web/templates/password/forgot_password.html.tera
deleted file mode 100644
index 4cec989..0000000
--- a/peach-web/templates/password/forgot_password.html.tera
+++ /dev/null
@@ -1,25 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-
- Click the button below to send a new temporary password which can be used to change your device password.
-
- The temporary password will be sent in an SSB private message to the admin of this device.
-
-
-
-
-
- {% include "snippets/flash_message" %}
-
-
- {% include "snippets/noscript" %}
-
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/password/reset_password.html.tera b/peach-web/templates/password/reset_password.html.tera
deleted file mode 100644
index 1e71905..0000000
--- a/peach-web/templates/password/reset_password.html.tera
+++ /dev/null
@@ -1,48 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/peers.html.tera b/peach-web/templates/peers.html.tera
deleted file mode 100644
index b78906f..0000000
--- a/peach-web/templates/peers.html.tera
+++ /dev/null
@@ -1,15 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/peers_list.html.tera b/peach-web/templates/peers_list.html.tera
deleted file mode 100644
index 2b61d78..0000000
--- a/peach-web/templates/peers_list.html.tera
+++ /dev/null
@@ -1,16 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-{%- endblock card -%}
diff --git a/peach-web/templates/shutdown.html.tera b/peach-web/templates/power.html.tera
similarity index 77%
rename from peach-web/templates/shutdown.html.tera
rename to peach-web/templates/power.html.tera
index 12b450c..ffd0a1e 100644
--- a/peach-web/templates/shutdown.html.tera
+++ b/peach-web/templates/power.html.tera
@@ -5,8 +5,8 @@
@@ -15,5 +15,5 @@
{% include "snippets/noscript" %}
-
+
{%- endblock card -%}
diff --git a/peach-web/templates/profile.html.tera b/peach-web/templates/profile.html.tera
deleted file mode 100644
index a34a37a..0000000
--- a/peach-web/templates/profile.html.tera
+++ /dev/null
@@ -1,33 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-
-
-
-
-
-
-
-
-
{ name }
-
{ public_key }
-
{ description }
-
-
-
-
-
-
-
- {% include "snippets/flash_message" %}
-
-{%- endblock card -%}
diff --git a/peach-web/templates/settings.html.tera b/peach-web/templates/settings.html.tera
deleted file mode 100644
index 43253c8..0000000
--- a/peach-web/templates/settings.html.tera
+++ /dev/null
@@ -1,14 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-{%- endblock card -%}
diff --git a/peach-web/templates/ssb_settings.html.tera b/peach-web/templates/ssb_settings.html.tera
deleted file mode 100644
index 24587ae..0000000
--- a/peach-web/templates/ssb_settings.html.tera
+++ /dev/null
@@ -1,20 +0,0 @@
-{%- extends "nav" -%}
-{%- block card %}
-
-
-{%- endblock card -%}