Updated about page

This commit is contained in:
Bernd Bestel 2024-04-14 19:24:32 +02:00
parent a68c1087dd
commit 2047d38c6e
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -26,20 +26,39 @@
<div class="tab-pane show active" <div class="tab-pane show active"
id="system-info"> id="system-info">
<p> <div class="row">
Version <code>{{ $versionInfo->Version }}</code><br> <div class="col-auto">
{{ $__t('Released on') }} <code>{{ $versionInfo->ReleaseDate }}</code> <time class="timeago timeago-contextual" <table class="table table-borderless table-responsive table-sm text-left">
datetime="{{ $versionInfo->ReleaseDate }}"></time> <tr>
</p> <td class="text-right">Version</td>
<td><code>{{ $versionInfo->Version }}</code></td>
</tr>
<tr>
<td class="text-right">{{ $__t('Released on') }}</td>
<td><code>{{ $versionInfo->ReleaseDate }}</code> <time class="timeago timeago-contextual"
datetime="{{ $versionInfo->ReleaseDate }}"></time></td>
</tr>
<tr>
<td class="text-right">PHP Version</td>
<td><code>{{ $systemInfo['php_version'] }}</code></td>
</tr>
<tr>
<td class="text-right">SQLite Version</td>
<td><code>{{ $systemInfo['sqlite_version'] }}</code></td>
</tr>
<tr>
<td class="text-right">OS</td>
<td><code>{{ $systemInfo['os'] }}</code></td>
</tr>
<tr>
<td class="text-right">Client</td>
<td><code>{{ $systemInfo['client'] }}</code></td>
</tr>
</table>
</div>
</div>
<p> <p class="border-top pt-3">
PHP Version <code>{{ $systemInfo['php_version'] }}</code><br>
SQLite Version <code>{{ $systemInfo['sqlite_version'] }}</code><br>
OS <code>{{ $systemInfo['os'] }}</code><br>
Client <code>{{ $systemInfo['client'] }}</code>
</p>
<p>
{{ $__t('Do you find Grocy useful?') }}<br> {{ $__t('Do you find Grocy useful?') }}<br>
<a class="btn btn-sm btn-primary text-white mt-1" <a class="btn btn-sm btn-primary text-white mt-1"
href="https://grocy.info/#say-thanks" href="https://grocy.info/#say-thanks"
@ -73,18 +92,15 @@
</div> </div>
<p class="small text-muted"> <p class="small text-muted border-top pt-3">
Grocy is a project by <a href="https://grocy.info"
class="text-dark"
target="_blank">Grocy</a> is a hobby project by
<a href="https://berrnd.de" <a href="https://berrnd.de"
class="text-dark" class="text-dark"
target="_blank">Bernd Bestel</a><br> target="_blank">Bernd Bestel</a><br>
Created with passion since 2017<br> Created with passion since 2017<br>
Life runs on code<br> Life runs on code<br>
<a href="https://github.com/grocy/grocy"
class="text-dark"
target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</p> </p>
</div> </div>
</div> </div>