From b85269852e5c8adaa382a27588491bf107f2054c Mon Sep 17 00:00:00 2001 From: Romain Courteaud <romain@nexedi.com> Date: Wed, 20 Jun 2007 17:31:25 +0000 Subject: [PATCH] Display IDs generated by the IdTool. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@14900 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/dtml/explainIdTool.dtml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/product/ERP5/dtml/explainIdTool.dtml b/product/ERP5/dtml/explainIdTool.dtml index cc79977b53..66624f6d16 100644 --- a/product/ERP5/dtml/explainIdTool.dtml +++ b/product/ERP5/dtml/explainIdTool.dtml @@ -1,6 +1,30 @@ <dtml-var manage_page_header> <dtml-var manage_tabs> -<p>Explain IdTool</p> +<p>This tools handles the generation of IDs.</p> + +<table width="100%"> + <tr class="list-header"> + <th> + Group + </th> + <th> + ID + </th> + <dtml-in prefix="dict" expr="dict_ids.keys()" no_push_item> + <dtml-if sequence-odd> + <tr class="row-normal"> + <dtml-else> + <tr class="row-hilite"> + </dtml-if> + <td> + <div class="list-item"><dtml-var expr="dict_item"></div> + </td> + <td> + <div class="list-item"><dtml-var expr="dict_ids[dict_item]"></div> + </td> + </tr> + </dtml-in> +</table> <dtml-var manage_page_footer> -- 2.30.9