aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/base/layout/action.tt
blob: dba41d0ee5947f551d123994fc7eb5872236706f (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
=for layout widget

<form action="[% action %]" id="[% form_id %]" method="[% method %]" enctype="multipart/form-data">
  [% header  %]
  [% container_list %]
  [% buttons %]
  [% footer  %]
</form>

=for layout header

[% error_message %]

=for layout container_list

[% call_next %]

=for layout container

[% call_next %]

=for layout buttons
  [% message %]
  [% ok_button_fragment %]
  [% apply_button_fragment %]
  [% cancel_button_fragment %]

=for layout message_layout

<span class="action_message">[% message_string %]</span>

=for layout error_message_layout

<span class="action_error_message">[% message_string %]</span>

=for layout standard_button

<span class="action_button">
  <input type="submit" class="button" name="[% event_id %]" value="[% label %]" />
</span>

=for layout ok_button

[% standard_button %]

=for layout apply_button

[% standard_button %]

=for layout cancel_button

[% standard_button %]

=for layout footer

=cut