Files
smueller 4b20efe4bc
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 10s
CI / Go — node-agent tests (push) Failing after 8s
CI / Go — edge-gateway build (push) Successful in 17s
Implement WHMCS Addon Dashboard with API for stats and integrate billing provider logic
2026-06-26 15:11:29 +02:00

30 lines
813 B
Smarty

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Reconciliation</h3>
</div>
<div class="panel-body">
<p>
<a href="{{modulelink}}" class="btn btn-default">Dashboard</a>
<a href="{{modulelink}}&action=reconciliation&run=1&dry=1" class="btn btn-default">Dry run</a>
<a href="{{modulelink}}&action=reconciliation&run=1&repair=1" class="btn btn-warning">Live + auto-repair</a>
</p>
{{reconciliation.result}}
<h4>Recent runs</h4>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Run ID</th>
<th>Mode</th>
<th>Issues</th>
<th>Created</th>
</tr>
</thead>
<tbody>
{{reconciliation.rows}}
</tbody>
</table>
</div>
</div>