wisski_cloud_account_manager/templates/wisski-cloud-account-manager-health-check-page.html.twig
2023-11-15 01:53:03 +01:00

27 lines
724 B
Twig
Executable file

{# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #}
<div>
<table class="table">
<thead>
<tr>
<th scope="col">Check</th>
<th scope="col">Values</th>
<th scope="col">Test</th>
<th scope="col">Result</th>
</tr>
</thead>
<tbody>
{% if healthCheck %}
<tr>
<td>healthCheck</td>
<td>-</td>
<td>
<form action="/wisski-cloud-account-manager/health-check" method="get">
<button type="submit">Check Health</button>
</form>
</td>
<td id="health-check-result"></td>
</tr>
{% endif %}
</tbody>
</table>
</div>