diff --git a/plinth/modules/jsxc/views.py b/plinth/modules/jsxc/views.py index c3e583211..145420294 100644 --- a/plinth/modules/jsxc/views.py +++ b/plinth/modules/jsxc/views.py @@ -5,7 +5,7 @@ from django.http import Http404 from django.views.generic import TemplateView import plinth.app as app_module -from plinth.modules import config +from plinth.modules import names class JsxcView(TemplateView): @@ -24,5 +24,5 @@ class JsxcView(TemplateView): def get_context_data(self, *args, **kwargs): """Add domain information to view context.""" context = super().get_context_data(*args, **kwargs) - context['domainname'] = config.get_domainname() + context['domain_name'] = names.get_domain_name() return context diff --git a/plinth/modules/letsencrypt/templates/letsencrypt.html b/plinth/modules/letsencrypt/templates/letsencrypt.html index ae5368753..238c0b38e 100644 --- a/plinth/modules/letsencrypt/templates/letsencrypt.html +++ b/plinth/modules/letsencrypt/templates/letsencrypt.html @@ -108,9 +108,9 @@
{% else %} - {% url 'config:index' as config_url %} + {% url 'names:index' as names_url %} {% blocktrans trimmed %} - No domains have been configured. Configure + No domains have been configured. Configure domains to be able to obtain certificates for them. {% endblocktrans %} {% endif %} diff --git a/plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html b/plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html index 561be4487..001d24bec 100644 --- a/plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html +++ b/plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html @@ -30,7 +30,7 @@