]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/CertificateTable.templ
upd: added correct display of login and revoked status to status table
[gigi.git] / src / org / cacert / gigi / output / CertificateTable.templ
index d48f05c7e1dd3f95b1f233501db58b7022a659ed..278b4f7f7bb04c989b9dc9b22808801fa5774ee8 100644 (file)
@@ -1,6 +1,6 @@
-<table class="wrapper dataTable">
+<table class="table">
 <thead><tr>
-<th><?=_Renew/Revoke/Delete?></th>
+<th></th>
 <th><?=_Status?></th>
 <th><?=_Email Address?></th>
 <th><?=_SerialNumber?></th>
@@ -15,7 +15,7 @@
 <? foreach($certs) {?>
 <tr>
        <td>
-       <? if($isNotRevoked) { ?><input type='checkbox' name='certs[]' value='<?=$serial?>'><? } ?>
+       <? if($revokable) { ?><input type='checkbox' name='certs[]' value='<?=$serial?>'><? } ?>
        </td>
        <td><?=$state?></td>
        <td><?=$CN?></td>
@@ -25,7 +25,7 @@
        <td><?=$issued?></td>
        <td><?=$revoked?></td>
        <td><?=$expire?></td>
-       <td>a</td>
+       <td><?=$login?></td>
 </tr>
 <? } ?>
 </tbody>