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