]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/pages/admin/support/FindCertPage.templ
add: enable support to search for certificates
[gigi.git] / src / org / cacert / gigi / pages / admin / support / FindCertPage.templ
diff --git a/src/org/cacert/gigi/pages/admin/support/FindCertPage.templ b/src/org/cacert/gigi/pages/admin/support/FindCertPage.templ
new file mode 100644 (file)
index 0000000..d8f61c1
--- /dev/null
@@ -0,0 +1,16 @@
+<p><?=_Multiple certificates?>: <?=$limit?></p>
+<table class="table">
+<tr>
+<th>Id</th><th><?=_Serial number?></th><th><?=_SAN?></th></tr>
+<? foreach($certtable) {?>
+  <tr>
+    <td><a href="/support/certs/<?=$serial?>"><?=$id?></a></td>
+    <td><a href="/support/certs/<?=$serial?>"><?=$serial?></a></td>
+    <td>
+    <? foreach($san) {?>
+       <?=$entry?>
+    <? } ?>
+    </td>
+  </tr>
+<? } ?>
+</table>