diff --git a/plinth/modules/dynamicdns/templates/dynamicdns.html b/plinth/modules/dynamicdns/templates/dynamicdns.html index 1e8ba3a41..e2ca073b2 100644 --- a/plinth/modules/dynamicdns/templates/dynamicdns.html +++ b/plinth/modules/dynamicdns/templates/dynamicdns.html @@ -1,4 +1,4 @@ -{% extends "app-subsubmenu.html" %} +{% extends "app.html" %} {% comment %} # # This file is part of FreedomBox. diff --git a/plinth/modules/dynamicdns/templates/dynamicdns_configure.html b/plinth/modules/dynamicdns/templates/dynamicdns_configure.html index 1ac338efb..54c247acc 100644 --- a/plinth/modules/dynamicdns/templates/dynamicdns_configure.html +++ b/plinth/modules/dynamicdns/templates/dynamicdns_configure.html @@ -1,4 +1,4 @@ -{% extends "app-subsubmenu.html" %} +{% extends "app.html" %} {% comment %} # # This file is part of FreedomBox. diff --git a/plinth/modules/dynamicdns/templates/dynamicdns_status.html b/plinth/modules/dynamicdns/templates/dynamicdns_status.html index de96582e1..7601095b6 100644 --- a/plinth/modules/dynamicdns/templates/dynamicdns_status.html +++ b/plinth/modules/dynamicdns/templates/dynamicdns_status.html @@ -1,4 +1,4 @@ -{% extends "app-subsubmenu.html" %} +{% extends "app.html" %} {% comment %} # # This file is part of FreedomBox. diff --git a/plinth/modules/dynamicdns/views.py b/plinth/modules/dynamicdns/views.py index af5160ada..5827f500a 100644 --- a/plinth/modules/dynamicdns/views.py +++ b/plinth/modules/dynamicdns/views.py @@ -55,6 +55,7 @@ def index(request): return TemplateResponse( request, 'dynamicdns.html', { 'title': dynamicdns.name, + 'name': dynamicdns.name, 'description': dynamicdns.description, 'manual_page': dynamicdns.manual_page, 'subsubmenu': subsubmenu @@ -78,6 +79,7 @@ def configure(request): return TemplateResponse( request, 'dynamicdns_configure.html', { 'title': _('Configure Dynamic DNS'), + 'name': dynamicdns.name, 'description': dynamicdns.description, 'manual_page': dynamicdns.manual_page, 'form': form, @@ -103,6 +105,7 @@ def statuspage(request): return TemplateResponse( request, 'dynamicdns_status.html', { 'title': _('Dynamic DNS Status'), + 'name': dynamicdns.name, 'description': dynamicdns.description, 'manual_page': dynamicdns.manual_page, 'no_nat': no_nat,