mirror of
https://github.com/friendica/friendica
synced 2024-11-18 02:23:40 +00:00
Adding serversettings table in template for non frio themes
This commit is contained in:
parent
1803862fc5
commit
1add30cc5b
1 changed files with 17 additions and 0 deletions
|
@ -44,5 +44,22 @@
|
|||
<dd> {{$platform}} '{{$codename}}' {{$version.1}} - {{$build}}</dt>
|
||||
</dl>
|
||||
|
||||
<dl>
|
||||
<dt>{{$serversettings.label}}</dt>
|
||||
<dd>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr><td colspan="2"><b>PHP</b></td></tr>
|
||||
{{foreach $serversettings.php as $k => $p}}
|
||||
<tr><td>{{$k}}</td><td>{{$p}}</td></tr>
|
||||
{{/foreach}}
|
||||
<tr><td colspan="2"><b>MySQL / MariaDB</b></td></tr>
|
||||
{{foreach $serversettings.mysql as $k => $p}}
|
||||
<tr><td>{{$k}}</td><td>{{$p}}</td></tr>
|
||||
{{/foreach}}
|
||||
</tbody>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue