]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/CertificateTable.templ
upd: rename package name and all references to it
[gigi.git] / src / org / cacert / gigi / output / CertificateTable.templ
diff --git a/src/org/cacert/gigi/output/CertificateTable.templ b/src/org/cacert/gigi/output/CertificateTable.templ
deleted file mode 100644 (file)
index 539ac1e..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<table class="table">
-<thead><tr>
-<th></th>
-<th><?=_Status?></th>
-<th><?=_Email Address?></th>
-<th><?=_SerialNumber?></th>
-<th><?=_Digest?></th>
-<th><?=_Profile?></th>
-<th><?=_Issued?></th>
-<th><?=_Revoked?></th>
-<th><?=_Expires?></th>
-<th><?=_Login?></th>
-</tr></thead>
-<tbody>
-<? foreach($certs) {?>
-<tr>
-       <td>
-       <? if($revokable) { ?><input type='checkbox' name='certs[]' value='<?=$serial?>'><? } ?>
-       </td>
-       <td><?=$state?></td>
-       <td><?=$CN?></td>
-       <td><a href='/account/certs/<?=$serial?>'><?=$serial?></a></td>
-       <td><?=$digest?></td>
-       <td><?=$profile?></td>
-       <td class="<?=$classIssued?>"><?=$issued?></td>
-       <td><?=$revoked?></td>
-       <td class="<?=$classExpired?>"><?=$expire?></td>
-       <td><?=$login?></td>
-</tr>
-<? } ?>
-</tbody>
-</table>