dynamicdns: Use app.html instead of app-subsubmenu.html

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-10-01 20:45:11 -07:00 committed by James Valleroy
parent f09e89aba4
commit 902851252a
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808
4 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{% extends "app-subsubmenu.html" %}
{% extends "app.html" %}
{% comment %}
#
# This file is part of FreedomBox.

View File

@ -1,4 +1,4 @@
{% extends "app-subsubmenu.html" %}
{% extends "app.html" %}
{% comment %}
#
# This file is part of FreedomBox.

View File

@ -1,4 +1,4 @@
{% extends "app-subsubmenu.html" %}
{% extends "app.html" %}
{% comment %}
#
# This file is part of FreedomBox.

View File

@ -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,