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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt (-8 / +7 lines)
Lines 156-162 Link Here
156
           <td><select name="Filter" id="borcat">
156
           <td><select name="Filter" id="borcat">
157
               <option value=""> </option>
157
               <option value=""> </option>
158
               [% FOREACH categoryloo IN categoryloop %]
158
               [% FOREACH categoryloo IN categoryloop %]
159
                 [% IF ( categoryloo.selected ) %]<option value="[% categoryloo.categorycode %]" selected="selected">[% categoryloo.description %]</option>[% ELSE %]<option value="[% categoryloo.categorycode %]">[% categoryloo.description %]</option>[% END %]
159
                 <option value="[% categoryloo.categorycode %]">[% categoryloo.description %]</option>
160
               [% END %]
160
               [% END %]
161
               </select>
161
               </select>
162
             </td> 
162
             </td> 
Lines 168-174 Link Here
168
           <td><select name="Filter" id="itemtype">
168
           <td><select name="Filter" id="itemtype">
169
               <option value=""> </option>
169
               <option value=""> </option>
170
               [% FOREACH itemtypeloo IN itemtypeloop %]
170
               [% FOREACH itemtypeloo IN itemtypeloop %]
171
                 [% IF ( itemtypeloo.selected ) %]<option value="[% itemtypeloo.code %]" selected="selected">[% itemtypeloo.description %]</option>[% ELSE %]<option value="[% itemtypeloo.code %]">[% itemtypeloo.description %]</option>[% END %]
171
                 <option value="[% itemtypeloo.code %]">[% itemtypeloo.description %]</option>
172
               [% END %]
172
               [% END %]
173
               </select>
173
               </select>
174
             </td> 
174
             </td> 
Lines 190-196 Link Here
190
            <td><select name="Filter" id="ccode">
190
            <td><select name="Filter" id="ccode">
191
                <option value=""> </option>
191
                <option value=""> </option>
192
                [% FOREACH ccodeloo IN ccodeloop %]
192
                [% FOREACH ccodeloo IN ccodeloop %]
193
					[% IF ( ccodeloo.selected ) %] <option value="[% ccodeloo.code %]" selected="selected">[% ccodeloo.description %]</option>[% ELSE %]<option value="[% ccodeloo.code %]">[% ccodeloo.description %]</option>[% END %]
193
                    <option value="[% ccodeloo.code %]">[% ccodeloo.description %]</option>
194
                [% END %]
194
                [% END %]
195
                </select>
195
                </select>
196
            </td>
196
            </td>
Lines 202-209 Link Here
202
            <td><select name="Filter" id="location">
202
            <td><select name="Filter" id="location">
203
                <option value=""> </option>
203
                <option value=""> </option>
204
                [% FOREACH locationloo IN locationloop %]
204
                [% FOREACH locationloo IN locationloop %]
205
					[% IF ( locationloo.selected ) %]<option value="[% locationloo.code %]" selected="selected">[% locationloo.description %]</option>[% ELSE %]<option value="[% locationloo.code %]">[% locationloo.description %]</option>[% END %]
205
                    <option value="[% locationloo.code %]">[% locationloo.description %]</option>
206
				[% END %]
206
                [% END %]
207
               </select>
207
               </select>
208
            </td> 
208
            </td> 
209
        </tr>
209
        </tr>
Lines 220-226 Link Here
220
			<td><select name="Filter" id="sort1">
220
			<td><select name="Filter" id="sort1">
221
               <option value=""> </option>
221
               <option value=""> </option>
222
               [% FOREACH Bsort IN Bsort1 %]
222
               [% FOREACH Bsort IN Bsort1 %]
223
			   [% IF ( Bsort.selected ) %]<option value="[% Bsort.authorised_value %]" selected="selected">[% Bsort.lib %]</option>[% ELSE %]<option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>[% END %]
223
                <option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>
224
               [% END %]
224
               [% END %]
225
               </select>
225
               </select>
226
            </td> 
226
            </td> 
Lines 233-239 Link Here
233
           	<td><select name="Filter" id="sort2">
233
           	<td><select name="Filter" id="sort2">
234
               <option value=""> </option>
234
               <option value=""> </option>
235
               [% FOREACH Bsort IN Bsort2 %]
235
               [% FOREACH Bsort IN Bsort2 %]
236
			   [% IF ( Bsort.selected ) %]<option value="[% Bsort.authorised_value %]" selected="selected">[% Bsort.lib %]</option>[% ELSE %]<option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>[% END %]
236
                   <option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>
237
               [% END %]
237
               [% END %]
238
               </select>
238
               </select>
239
            </td> 
239
            </td> 
240
- 

Return to bug 17495