b5cb708bbf941bfb8a8874e7a1af9ecbd230cceb
[catagits/Reaction.git] / share / skin / base / layout / action.tt
1 =for layout widget
2
3 <div class="action_form">
4   <form action="[% action %]" id="[% form_id %]" method="[% method %]" enctype="multipart/form-data">
5     [% header  %]
6     [% container_list %]
7     [% buttons %]
8     [% footer  %]
9   </form>
10 </div>
11
12 =for layout header
13
14 [% error_message %]
15
16 =for layout container_list
17
18 [% call_next %]
19
20 =for layout container
21
22 [% call_next %]
23
24 =for layout buttons
25   [% message %]
26   [% ok_button_fragment %]
27   [% apply_button_fragment %]
28   [% cancel_button_fragment %]
29
30 =for layout message_layout
31
32 <span class="action_message">[% message_string %]</span>
33
34 =for layout error_message_layout
35
36 <span class="action_error_message">[% message_string %]</span>
37
38 =for layout standard_button
39
40 <span class="action_button">
41   <input type="submit" class="button" name="[% event_id %]" value="[% label %]" />
42 </span>
43
44 =for layout ok_button
45
46 [% standard_button %]
47
48 =for layout apply_button
49
50 [% standard_button %]
51
52 =for layout cancel_button
53
54 [% standard_button %]
55
56 =for layout footer
57
58 =cut