diff --git a/plinth/modules/sharing/templates/sharing.html b/plinth/modules/sharing/templates/sharing.html index 1e22a3372..746329c13 100644 --- a/plinth/modules/sharing/templates/sharing.html +++ b/plinth/modules/sharing/templates/sharing.html @@ -33,7 +33,7 @@ {% block content %} - {% include "header.html" with icon_filename=icon_filename name=title description='' %} + {% include "header.html" with icon_filename=icon_filename name=title description=description %}

. +# +{% endcomment %} + {% load bootstrap %} {% load i18n %} {% load static %} diff --git a/plinth/templates/setup.html b/plinth/templates/setup.html index 6011695ad..9de74ce09 100644 --- a/plinth/templates/setup.html +++ b/plinth/templates/setup.html @@ -36,7 +36,7 @@ {% block content %} - {% include "header.html" with icon_filename=setup_helper.module.icon_filename name=setup_helper.module.name description=setup_helper.module.description manual_page=setup_helper.module.manual_page setup=True %} + {% include "header.html" with icon_filename=setup_helper.module.icon_filename name=setup_helper.module.name description=setup_helper.module.description short_description=setup_helper.module.short_description manual_page=setup_helper.module.manual_page setup=True %} {% include "toolbar.html" with clients=setup_helper.module.clients %} diff --git a/plinth/views.py b/plinth/views.py index cee5d0901..4cb7be766 100644 --- a/plinth/views.py +++ b/plinth/views.py @@ -211,7 +211,7 @@ class SetupView(TemplateView): template_name = 'setup.html' name = 'None' # List of paragraphs describing the service - description = "" + description = [] def get_context_data(self, **kwargs): """Return the context data rendering the template."""