View | Details | Raw Unified | Return to bug 19791
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt (-20 / +28 lines)
Lines 98-120 Link Here
98
								<label for="user">Librarian:</label>
98
								<label for="user">Librarian:</label>
99
                                <input type="text" name="user" id="user" value="[% user | html %]" />
99
                                <input type="text" name="user" id="user" value="[% user | html %]" />
100
							</li>
100
							</li>
101
                        <li>
101
                            [% UNLESS src == "circ" %]
102
                                <label for="modules">Modules:</label>
102
                                <li>
103
                                <select name="modules" id="modules" multiple="multiple">
103
                                    <label for="modules">Modules:</label>
104
                                    [% UNLESS modules %]
104
                                    <select name="modules" id="modules" multiple="multiple">
105
                                        <option value="" selected="selected">All</option>
105
                                        [% UNLESS modules %]
106
                                    [% ELSE %]
106
                                            <option value="" selected="selected">All</option>
107
                                        <option value="">All</option>
108
                                    [% END %]
109
                                    [% FOREACH modx IN [ 'CATALOGUING' 'AUTHORITIES' 'MEMBERS' 'ACQUISITIONS' 'SERIAL' 'HOLDS' 'ILL' 'CIRCULATION' 'LETTER' 'FINES' 'SYSTEMPREFERENCE' 'CRONJOBS', 'REPORTS' ] %]
110
                                        [% IF modules.grep(modx).size %]
111
                                            <option value="[% modx | html %]" selected="selected">[% PROCESS translate_log_module module=modx %]</option>
112
                                        [% ELSE %]
107
                                        [% ELSE %]
113
                                            <option value="[% modx | html %]">[% PROCESS translate_log_module module=modx %]</option>
108
                                            <option value="">All</option>
114
                                        [% END %]
109
                                        [% END %]
115
                                    [% END %]
110
                                        [% FOREACH modx IN [ 'CATALOGUING' 'AUTHORITIES' 'MEMBERS' 'ACQUISITIONS' 'SERIAL' 'HOLDS' 'ILL' 'CIRCULATION' 'LETTER' 'FINES' 'SYSTEMPREFERENCE' 'CRONJOBS', 'REPORTS' ] %]
116
                                </select>
111
                                            [% IF modules.grep(modx).size %]
117
                            </li>
112
                                                <option value="[% modx | html %]" selected="selected">[% PROCESS translate_log_module module=modx %]</option>
113
                                            [% ELSE %]
114
                                                <option value="[% modx | html %]">[% PROCESS translate_log_module module=modx %]</option>
115
                                            [% END %]
116
                                        [% END %]
117
                                    </select>
118
                                </li>
119
                            [% ELSE %]
120
                                <input type="hidden" name="modules" value="MEMBERS" />
121
                            [% END %]
118
                            <li>
122
                            <li>
119
                                <label for="actions">Actions:</label>
123
                                <label for="actions">Actions:</label>
120
                                <select name="actions" id="actions" multiple="multiple">
124
                                <select name="actions" id="actions" multiple="multiple">
Lines 133-142 Link Here
133
                                    [% END %]
137
                                    [% END %]
134
                                </select>
138
                                </select>
135
                            </li>
139
                            </li>
136
							<li>
140
                            <li>
137
								<label for="object">Object: </label>
141
                                [% IF src == 'circ' %]
138
                                <input type="text" id="object" name="object" value="[% object | html %]" />
142
                                    <label for="object">Borrowernumber: </label>
139
							</li>
143
                                    <input type="text" id="object" name="object" value="[% object | html %]" readonly="readonly" title="This field cannot be modified from the circulation module." />
144
                                [% ELSE %]
145
                                    <label for="object">Object: </label>
146
                                    <input type="text" id="object" name="object" value="[% object | html %]" />
147
                                [% END %]
148
                            </li>
140
							<li>
149
							<li>
141
								<label for="info">Info:</label>
150
								<label for="info">Info:</label>
142
                                <input type="text" id="info" name="info" value="[% info | html %]" />
151
                                <input type="text" id="info" name="info" value="[% info | html %]" />
143
- 

Return to bug 19791