aboutsummaryrefslogtreecommitdiffstats
path: root/root/base/displayfield/list
blob: 2dcf0666a3597cd486656f3c8e7e6727510852db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[%

PROCESS displayfield_base;

control_block = 'list_control';

BLOCK list_control;

  "<ul>\n";
  FOREACH v_val IN self.value_names;
    '  <li>'; v_val | html; "</li>\n";
  END;
  "</ul>\n";

END;

%]