aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/base/layout/action.tt
blob: b5cb708bbf941bfb8a8874e7a1af9ecbd230cceb (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
57
58
=for layout widget

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

=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