Files
postgresql-port/embedded_ui/overview.html.hbs
2025-04-23 19:31:26 +00:00

26 lines
764 B
Handlebars

<section class="section">
<div class="container">
<h2 class="title is-4">Connection details</h2>
<table class="table">
<tbody>
<tr>
<th>Port</th>
<td>{{entitlements.port-number}}</td>
</tr>
<tr>
<th>User</th>
<td>{{entitlements.db-user}}</td>
</tr>
<tr>
<th>Password</th>
<td>{{entitlements.db-password}}</td>
</tr>
<tr>
<th>Database name</th>
<td>{{entitlements.db-name}}</td>
</tr>
</tbody>
</table>
</div>
</section>