Show software and version directly in the pods table if no errors

closes #8379
This commit is contained in:
Benjamin Neff 2022-07-23 05:44:20 +02:00
parent 01f8f55dbb
commit 4efc4dabf8
No known key found for this signature in database
GPG key ID: 971464C3F1A90194
2 changed files with 3 additions and 1 deletions

View file

@ -19,6 +19,7 @@
## Features ## Features
* Render posts and comments as HTML in HTML mails [#8365](https://github.com/diaspora/diaspora/pull/8365) * Render posts and comments as HTML in HTML mails [#8365](https://github.com/diaspora/diaspora/pull/8365)
* Add NodeInfo 2.1 support and also read newer versions of NodeInfo [#8379](https://github.com/diaspora/diaspora/pull/8379)
# 0.7.17.0 # 0.7.17.0

View file

@ -1,5 +1,5 @@
<td class="ssl-status""> <td class="ssl-status">
{{#if ssl}} {{#if ssl}}
<i title="{{t 'admin.pods.ssl_enabled'}}" class="entypo-check"> <i title="{{t 'admin.pods.ssl_enabled'}}" class="entypo-check">
{{else}} {{else}}
@ -14,6 +14,7 @@
<td> <td>
{{#if has_no_errors}} {{#if has_no_errors}}
<i title="{{status_text}}" class="glyphicon glyphicon-ok"></i> <i title="{{status_text}}" class="glyphicon glyphicon-ok"></i>
{{software}}
{{else}} {{else}}
{{status_text}} {{status_text}}
{{/if}} {{/if}}