jilo-web/app/templates/agent-list.php

16 lines
907 B
PHP
Raw Normal View History

2024-09-23 18:39:32 +00:00
<!-- jilo agents -->
<div class="card text-center w-75 mx-lef">
<p class="h4 card-header">Jilo Agents on platform <?= htmlspecialchars($platform_id) ?> (<?= htmlspecialchars($platformDetails[0]['name']) ?>)</p>
<div class="card-body">
<?php foreach ($agentDetails as $agent) { ?>
<p class="card-text">
agent id<?= htmlspecialchars($agent['id']) ?>: type <?= htmlspecialchars($agent['agent_type_id']) ?>, url <?= htmlspecialchars($agent['url']) ?>
2024-09-27 06:49:50 +00:00
<button onclick="fetchData()">fetch data</button>
<button onclick="fetchData(true)">force refresh</button>
2024-09-23 18:39:32 +00:00
</p>
2024-09-27 06:49:50 +00:00
<p>Result:</p>
<pre id="result">click a button to fetch data from the agent.</pre>
2024-09-23 18:39:32 +00:00
<?php } ?>