aboutsummaryrefslogtreecommitdiffstats
path: root/root/base/displayfield_base
blob: 3fdcfcad1fe998d267ffc1b7efd4dc78f8b13652 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[%-

main_block    = 'displayfield_base_field';

control_block = 'displayfield_base_control';

BLOCK displayfield_base_field;

  IF self.label;
    '<label>'; loc(self.label); '</label>: ';
  END;

  include( 'control_block' );

END;

BLOCK displayfield_base_control;

  "CONTROL";

END;

-%]