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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt (-3 / +2 lines)
Lines 122-130 Link Here
122
                                                        <option value="">No notice</option>
122
                                                        <option value="">No notice</option>
123
                                                        [% FOREACH letter IN letters %]
123
                                                        [% FOREACH letter IN letters %]
124
                                                            [% IF letter.code == value.selected_lettercode %]
124
                                                            [% IF letter.code == value.selected_lettercode %]
125
                                                            <option value="[% letter.code | html %]" selected="selected">[% letter.name | html %]</option>
125
                                                            <option value="[% letter.code | html %]" selected="selected">[% letter.name | html %] ( [% letter.code | html %] )</option>
126
                                                            [% ELSE %]
126
                                                            [% ELSE %]
127
                                                            <option value="[% letter.code | html %]">[% letter.name | html %]</option>
127
                                                            <option value="[% letter.code | html %]">[% letter.name | html %] ( [% letter.code | html %] )</option>
128
                                                            [% END %]
128
                                                            [% END %]
129
                                                        [% END %]
129
                                                        [% END %]
130
                                                    </select>
130
                                                    </select>
131
- 

Return to bug 33203