From 8f6d24be63198ea32d6b21dfd5ca00442d8175ca Mon Sep 17 00:00:00 2001 From: agames4 Date: Wed, 6 Sep 2023 23:54:04 +0200 Subject: [PATCH] added first template implementation first templating things --- sipa/templates/base.html | 1 + sipa/templates/usersuite/index.html | 1 + 2 files changed, 2 insertions(+) diff --git a/sipa/templates/base.html b/sipa/templates/base.html index 085cfd9d..63497c67 100644 --- a/sipa/templates/base.html +++ b/sipa/templates/base.html @@ -446,6 +446,7 @@

+ {% block custom_script %}{% endblock %} diff --git a/sipa/templates/usersuite/index.html b/sipa/templates/usersuite/index.html index ee29377f..b1be2244 100644 --- a/sipa/templates/usersuite/index.html +++ b/sipa/templates/usersuite/index.html @@ -4,6 +4,7 @@ {% block content %} {% include 'usersuite/_index_status.html' %} {% include 'usersuite/_payment_details.html' %} + {% include 'usersuite/_port_forwardings.html' %} {% if show_traffic_data %} {% include '_traffic.html' %} {% endif %}