]> WPIA git - gigi.git/blob - src/org/cacert/gigi/output/CertificateTable.templ
add: Highlight certificates outside validity period in Cert Overview
[gigi.git] / src / org / cacert / gigi / output / CertificateTable.templ
1 <table class="table">
2 <thead><tr>
3 <th></th>
4 <th><?=_Status?></th>
5 <th><?=_Email Address?></th>
6 <th><?=_SerialNumber?></th>
7 <th><?=_Digest?></th>
8 <th><?=_Profile?></th>
9 <th><?=_Issued?></th>
10 <th><?=_Revoked?></th>
11 <th><?=_Expires?></th>
12 <th><?=_Login?></th>
13 </tr></thead>
14 <tbody>
15 <? foreach($certs) {?>
16 <tr>
17         <td>
18         <? if($revokable) { ?><input type='checkbox' name='certs[]' value='<?=$serial?>'><? } ?>
19         </td>
20         <td><?=$state?></td>
21         <td><?=$CN?></td>
22         <td><a href='/account/certs/<?=$serial?>'><?=$serial?></a></td>
23         <td><?=$digest?></td>
24         <td><?=$profile?></td>
25         <td class="<?=$classIssued?>"><?=$issued?></td>
26         <td><?=$revoked?></td>
27         <td class="<?=$classExpired?>"><?=$expire?></td>
28         <td><?=$login?></td>
29 </tr>
30 <? } ?>
31 </tbody>
32 </table>