<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hello out there, <br>
<br>
in Admin/Users/index.html (surely on the local-path), in the
<%init%>-part I implemented a hash which looks like that: <br>
<br>
<font face="monospace"><big><font face="Courier">my %NumHash = (21
=> "foo", <br>
                23 => "bar", <br>
               25 => "entry", <br>
               29 => "exit"); </font><br>
</big></font><big><small>It is for sure that $NumHash{21} displays foo,
for instance. <br>
<br>
I want to get a list with the following entries: <br>
<font face="Courier"><br>
#       RealName            NumHash<br>
13      Obama, Barack    <br>
21      Reagan, Ronald      foo<br>
23      Clinton, Bill       bar<br>
25      Nixon, Richard      entry<br>
29      Washington, George  exit<br>
<br>
</font></small></big>I do not think that <font face="Courier">$NumHash{__id__}</font> 
works if I implement it in the format string of my collection list.
What can I do else?  <big><small><font face="Courier"> <br>
</font><br>
<br>
Thanks in advance. <br>
<br>
Wolfram Hüttermann<br>
</small></big>
</body>
</html>