From ddeeb59ed5eba3d7341f27dd0c87a937bcd1d3a3 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 27 Nov 2019 00:38:36 -0800 Subject: [PATCH] templates: Make internal zone and port forwarding info override-able Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/templates/app.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plinth/templates/app.html b/plinth/templates/app.html index ea43a9989..8e18f7994 100644 --- a/plinth/templates/app.html +++ b/plinth/templates/app.html @@ -86,9 +86,13 @@ {% endif %} {% endblock %} - {% include "internal-zone.html" %} + {% block internal_zone %} + {% include "internal-zone.html" %} + {% endblock %} - {% include "port-forwarding-info.html" with service_name=name %} + {% block port_forwarding_info %} + {% include "port-forwarding-info.html" with service_name=name %} + {% endblock %} {% block configuration %}

{% trans "Configuration" %}