]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/domain/DomainPinglogForm.templ
fix: ResultSet.getDate is often wrong as it fetches day-precision times
[gigi.git] / src / org / cacert / gigi / pages / account / domain / DomainPinglogForm.templ
1 <h2><?=_Ping log for '${domainname}'?></h2>
2 <table class="table">
3 <tr><th><?=_Type?></th>
4 <th><?=_State?></th>
5 <th><?=_Config?></th>
6 <th><?=_Result?></th>
7 <th><?=_Execution Date?></th>
8 <th><?=_Reping?></th></tr>
9 <? foreach($pings) { ?>
10 <tr>
11 <td><?=$type?></td>
12 <td><?=$state?></td>
13 <td><?=$config?></td>
14 <td><?=$result?></td>
15 <td><?=$date?></td>
16 <td><button name='configId' class='btn btn-primary' value="<?=$configId?>"><?=_Re-execute?></button></td>
17 </tr>
18 <?}?>
19 </table>
20