diff --git a/plinth/templates/app-subsubmenu.html b/plinth/templates/app-subsubmenu.html index 0757a5a1a..3daa4e300 100644 --- a/plinth/templates/app-subsubmenu.html +++ b/plinth/templates/app-subsubmenu.html @@ -23,44 +23,34 @@ {% load plinth_extras %} {% load static %} -{% block container %} -
- {% block content_row %} +{% block content %} - {% include 'messages.html' %} + {% block pagetitle %} +

{{ title }}

+ {% endblock %} - {% block content %} + {% block description %} + {% for paragraph in description %} +

{{ paragraph|safe }}

+ {% endfor %} + {% endblock %} - {% block pagetitle %} -

{{ title }}

- {% endblock %} + {% if manual_page %} +

+ + {% trans 'Learn more...' %} + +

+ {% endif %} - {% block description %} - {% for paragraph in description %} -

{{ paragraph|safe }}

- {% endfor %} - {% endblock %} + {% include "clients.html" with clients=clients enabled=is_enabled %} - {% if manual_page %} -

- - {% trans 'Learn more...' %} - -

- {% endif %} + {% block subsubmenu %} + {% if subsubmenu %} + {% show_subsubmenu subsubmenu %} + {% endif %} + {% endblock %} - {% include "clients.html" with clients=clients enabled=is_enabled %} - - {% block subsubmenu %} - {% if subsubmenu %} - {% show_subsubmenu subsubmenu %} - {% endif %} - {% endblock %} - - {% block configuration %} - {% endblock %} - {% endblock %} - - {% endblock %} -
+ {% block configuration %} + {% endblock %} {% endblock %}