Files
HexaHost-GameCloud/integrations/whmcs/modules/addons/hexagamecloud/templates/events.tpl
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

28 lines
795 B
Smarty

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">GameCloud Events</h3>
</div>
<div class="panel-body">
<p>
<a href="{{modulelink}}" class="btn btn-default">Dashboard</a>
<a href="{{modulelink}}&action=poll" class="btn btn-primary">Poll &amp; auto-ack</a>
</p>
<p>Pending local copies: <strong>{{pendingCount}}</strong> · Dead letter: <strong>{{deadLetterCount}}</strong></p>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>ID</th>
<th>Type</th>
<th>Status</th>
<th>Payload</th>
<th>Created</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{{events.rows}}
</tbody>
</table>
</div>
</div>