diff --git a/plinth/modules/help/templates/help_about.html b/plinth/modules/help/templates/help_about.html index af0894daa..4dddbcfb4 100644 --- a/plinth/modules/help/templates/help_about.html +++ b/plinth/modules/help/templates/help_about.html @@ -13,6 +13,24 @@ class="main-graphic" />

+
+ {% blocktrans trimmed %} + You are running {{ os_release }} and {{ box_name }} version {{ version }}. + {% endblocktrans %} + + {% if new_version %} + {% url 'upgrades:index' as upgrades_url %} + {% blocktrans trimmed %} + There is a new {{ box_name }} version + available. + {% endblocktrans %} + {% else %} + {% blocktrans trimmed %} + {{ box_name }} is up to date. + {% endblocktrans %} + {% endif %} +
+

{% blocktrans trimmed %} {{ box_name }} is a community project to develop, design and @@ -59,21 +77,4 @@ href="https://wiki.debian.org/FreedomBox" target="_blank">{% trans "Learn more" %}

-

- {% blocktrans trimmed %} - You are running {{ os_release }} and {{ box_name }} version {{ version }}. - {% endblocktrans %} - - {% if new_version %} - {% url 'upgrades:index' as upgrades_url %} - {% blocktrans trimmed %} - There is a new {{ box_name }} version - available. - {% endblocktrans %} - {% else %} - {% blocktrans trimmed %} - {{ box_name }} is up to date. - {% endblocktrans %} - {% endif %} -

{% endblock %}