Show database name and database connection user in system infos

This commit is contained in:
Jan Böhmer 2023-01-16 00:15:15 +01:00
parent 6eb40c6a41
commit 256926be94
4 changed files with 38 additions and 1 deletions

View file

@ -13,5 +13,13 @@
<td>Database Size</td>
<td>{{ db_size != null ? db_size | format_bytes : 'Unknown' }}</td>
</tr>
<tr>
<td>Database Name</td>
<td>{{ db_name }}</td>
</tr>
<tr>
<td>Database User</td>
<td>{{ db_user }}</td>
</tr>
</tbody>
</table>