]> WPIA git - gigi.git/blob - src/org/cacert/gigi/output/CertificateTable.templ
1999897ec3c6c4b95b08da923f3dd8d0dd56135c
[gigi.git] / src / org / cacert / gigi / output / CertificateTable.templ
1 <form method="post">
2 <table class="wrapper dataTable">
3 <thead><tr>
4 <th><?=_Renew/Revoke/Delete?></th>
5 <th><?=_Status?></th>
6 <th><?=_Email Address?></th>
7 <th><?=_SerialNumber?></th>
8 <th><?=_Digest?></th>
9 <th><?=_Profile?></th>
10 <th><?=_Issued?></th>
11 <th><?=_Revoked?></th>
12 <th><?=_Expires?></th>
13 <th><?=_Login?></th>
14 </tr></thead>
15 <tbody>
16 <? foreach($certs) {?>
17 <tr>
18         <td><input type='checkbox' name='certs[]' value='<?=$serial?>'></td>
19         <td><?=$state?></td>
20         <td><?=$CN?></td>
21         <td><a href='/account/certs/<?=$serial?>'><?=$serial?></a></td>
22         <td><?=$digest?></td>
23         <td><?=$profile?></td>
24         <td><?=$issued?></td>
25         <td><?=$revoked?></td>
26         <td><?=$expire?></td>
27         <td>a</td>
28 </tr>
29 <? } ?>
30 </tbody>
31 </table>
32 </form>