]> WPIA git - gigi.git/blob - src/club/wpia/gigi/output/CertificateTable.templ
edf01ebc0b4ed518558e64c4ccf53f1adddf8787
[gigi.git] / src / club / wpia / 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 <th><?=_Description?></th>
14 </tr></thead>
15 <tbody>
16 <? foreach($certs) {?>
17 <tr>
18         <td>
19         <? if($revokable) { ?><input type='checkbox' name='certs[]' value='<?=$serial?>'><? } ?>
20         </td>
21         <td><?=$state?></td>
22         <td><?=$CN?></td>
23         <td><a href='/account/certs/<?=$serial?>'><?=$serial?></a></td>
24         <td><?=$digest?></td>
25         <td><?=$profile?></td>
26         <td class="<?=$classIssued?>"><?=$issued?></td>
27         <td><?=$revoked?></td>
28         <td class="<?=$classExpired?>"><?=$expire?></td>
29         <td><?=$login?></td>
30         <td><?=$description?></td>
31 </tr>
32 <? } ?>
33 </tbody>
34 </table>