1<!-- set_pending_list_request.tt2 -->
2<div class="block">
3    <strong>
4        [%|loc%]List name:[%END%] [% list %]<br />
5        [%|loc%]Subject:[%END%] [% list_subject %]<br />
6    </strong>
7    [% list_request_date = BLOCK ~%]
8        [% list_request_date_epoch | optdesc('unixtime') %]
9    [%~ END ~%]
10    [%|loc(list_request_by,list_request_date)%]List requested by %1 on %2[%END%]<br />
11</div>
12
13[% IF is_listmaster %]
14    [% IF list_status == 'pending' %]
15        <div>
16            <form action="[% path_cgi %]" method="post">
17                <fieldset>
18                    <input type="hidden" name="list" value="[% list %]" />
19                    <input type="hidden" name="serial" value="[% list_serial %]" />
20
21                    <ul id="set_pending_radio">
22                        <li>
23                            <input id="action_close" type="radio" name="action" value="close_list" />
24                            <label for="action_close">[%|loc%]Close it[%END%]</label>
25                        </li>
26                        <li>
27                            <input id="action_open" type="radio" name="action" value="open_list" />
28                            <label for="action_open">[%|loc%]Install it[%END%]</label>
29                        </li>
30                    </ul>
31                    <input type="hidden" name="mode" value="install" />
32                    <input type="hidden" name="previous_action" value="[% action %]" />
33                    <input class="MainMenuLinks" type="submit" value="[%|loc%]submit[%END%]" />
34                    <input id="notify" type="checkbox" name="notify" checked="checked" />
35                    <label for="notify">[%|loc%]notify owner[%END%]</label>
36                </fieldset>
37            </form>
38        </div>
39        <hr />
40    [% END %]
41[% END %]
42
43<div class="block">
44    <h2>[%|loc%]Information file[%END%]</h2>
45    [% IF is_listmaster ~%]
46        <code>[% list_info %]</code>
47    [%~ END ~%]
48
49    <pre class="code">
50        [%~ IF list_info_file_exists ~%]
51            [% list_info_content %]
52        [%~ ELSE ~%]
53            [%|loc%]No info file provided.[%END%]
54        [%~ END %]
55    </pre>
56</div>
57
58<h2>[%|loc%]Users[%END%]</h2>
59<ul>
60    <li>
61        <a href="[% 'review' | url_rel([list,'owner']) %]">
62            [%|loc%]Owners[%END%]
63        </a>
64    </li>
65    <li>
66        <a href="[% 'review' | url_rel([list,'editor']) %]">
67            [%|loc%]Moderators[%END%]
68        </a>
69    </li>
70</ul>
71
72<div class="block">
73    <h2>[%|loc%]Configuration file[%END%]</h2>
74    [% IF is_listmaster ~%]
75        <code>[% list_config %]</code>
76    [%~ END %]
77
78    <pre class="code">
79        [%~ list_config_content ~%]
80    </pre>
81</div>
82<!-- end set_pending_list_request.tt2 -->
83