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 134-140 Link Here
134
           <td><select name="Filter" id="borcat">
134
           <td><select name="Filter" id="borcat">
135
               <option value=""> </option>
135
               <option value=""> </option>
136
               [% FOREACH categoryloo IN categoryloop %]
136
               [% FOREACH categoryloo IN categoryloop %]
137
                 [% IF ( categoryloo.selected ) %]<option value="[% categoryloo.categorycode %]" selected="selected">[% categoryloo.description %]</option>[% ELSE %]<option value="[% categoryloo.categorycode %]">[% categoryloo.description %]</option>[% END %]
137
                 <option value="[% categoryloo.categorycode %]">[% categoryloo.description %]</option>
138
               [% END %]
138
               [% END %]
139
               </select>
139
               </select>
140
             </td> 
140
             </td> 
Lines 146-152 Link Here
146
           <td><select name="Filter" id="itemtype">
146
           <td><select name="Filter" id="itemtype">
147
               <option value=""> </option>
147
               <option value=""> </option>
148
               [% FOREACH itemtypeloo IN itemtypeloop %]
148
               [% FOREACH itemtypeloo IN itemtypeloop %]
149
                 [% IF ( itemtypeloo.selected ) %]<option value="[% itemtypeloo.code %]" selected="selected">[% itemtypeloo.description %]</option>[% ELSE %]<option value="[% itemtypeloo.code %]">[% itemtypeloo.description %]</option>[% END %]
149
                 <option value="[% itemtypeloo.code %]">[% itemtypeloo.description %]</option>
150
               [% END %]
150
               [% END %]
151
               </select>
151
               </select>
152
             </td> 
152
             </td> 
Lines 168-174 Link Here
168
            <td><select name="Filter" id="ccode">
168
            <td><select name="Filter" id="ccode">
169
                <option value=""> </option>
169
                <option value=""> </option>
170
                [% FOREACH ccodeloo IN ccodeloop %]
170
                [% FOREACH ccodeloo IN ccodeloop %]
171
					[% IF ( ccodeloo.selected ) %] <option value="[% ccodeloo.code %]" selected="selected">[% ccodeloo.description %]</option>[% ELSE %]<option value="[% ccodeloo.code %]">[% ccodeloo.description %]</option>[% END %]
171
                    <option value="[% ccodeloo.code %]">[% ccodeloo.description %]</option>
172
                [% END %]
172
                [% END %]
173
                </select>
173
                </select>
174
            </td>
174
            </td>
Lines 180-187 Link Here
180
            <td><select name="Filter" id="location">
180
            <td><select name="Filter" id="location">
181
                <option value=""> </option>
181
                <option value=""> </option>
182
                [% FOREACH locationloo IN locationloop %]
182
                [% FOREACH locationloo IN locationloop %]
183
					[% IF ( locationloo.selected ) %]<option value="[% locationloo.code %]" selected="selected">[% locationloo.description %]</option>[% ELSE %]<option value="[% locationloo.code %]">[% locationloo.description %]</option>[% END %]
183
                    <option value="[% locationloo.code %]">[% locationloo.description %]</option>
184
				[% END %]
184
                [% END %]
185
               </select>
185
               </select>
186
            </td> 
186
            </td> 
187
        </tr>
187
        </tr>
Lines 198-204 Link Here
198
			<td><select name="Filter" id="sort1">
198
			<td><select name="Filter" id="sort1">
199
               <option value=""> </option>
199
               <option value=""> </option>
200
               [% FOREACH Bsort IN Bsort1 %]
200
               [% FOREACH Bsort IN Bsort1 %]
201
			   [% IF ( Bsort.selected ) %]<option value="[% Bsort.authorised_value %]" selected="selected">[% Bsort.lib %]</option>[% ELSE %]<option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>[% END %]
201
                <option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>
202
               [% END %]
202
               [% END %]
203
               </select>
203
               </select>
204
            </td> 
204
            </td> 
Lines 211-217 Link Here
211
           	<td><select name="Filter" id="sort2">
211
           	<td><select name="Filter" id="sort2">
212
               <option value=""> </option>
212
               <option value=""> </option>
213
               [% FOREACH Bsort IN Bsort2 %]
213
               [% FOREACH Bsort IN Bsort2 %]
214
			   [% IF ( Bsort.selected ) %]<option value="[% Bsort.authorised_value %]" selected="selected">[% Bsort.lib %]</option>[% ELSE %]<option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>[% END %]
214
                   <option value="[% Bsort.authorised_value %]" >[% Bsort.lib %]</option>
215
               [% END %]
215
               [% END %]
216
               </select>
216
               </select>
217
            </td> 
217
            </td> 
218
- 

Return to bug 17495