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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/recalls/request.tt (-5 / +5 lines)
Lines 90-98 Link Here
90
                    <input type="hidden" name="op" value="cud-request" />
90
                    <input type="hidden" name="op" value="cud-request" />
91
                    <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
91
                    <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
92
                    [% IF error %]
92
                    [% IF error %]
93
                        <input type="submit" class="btn btn-default" value="Place recall" disabled="disabled" />
93
                        <input type="submit" class="btn btn-primary" value="Place recall" disabled="disabled" />
94
                    [% ELSE %]
94
                    [% ELSE %]
95
                        <input type="submit" class="btn btn-default" value="Place recall" />
95
                        <input type="submit" class="btn btn-primary" value="Place recall" />
96
                    [% END %]
96
                    [% END %]
97
                    <a href="/cgi-bin/koha/recalls/request.pl?biblionumber=[% biblio.biblionumber | uri %]" class="cancel">Cancel</a>
97
                    <a href="/cgi-bin/koha/recalls/request.pl?biblionumber=[% biblio.biblionumber | uri %]" class="cancel">Cancel</a>
98
                </fieldset>
98
                </fieldset>
Lines 177-185 Link Here
177
                    <input type="hidden" name="op" value="cud-request" />
177
                    <input type="hidden" name="op" value="cud-request" />
178
                    <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
178
                    <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
179
                    [% IF error %]
179
                    [% IF error %]
180
                        <input type="submit" class="btn btn-default" value="Place recall" disabled="disabled" />
180
                        <input type="submit" class="btn btn-primary" value="Place recall" disabled="disabled" />
181
                    [% ELSE %]
181
                    [% ELSE %]
182
                        <input type="submit" class="btn btn-default" value="Place recall" />
182
                        <input type="submit" class="btn btn-primary" value="Place recall" />
183
                    [% END %]
183
                    [% END %]
184
                    <a href="/cgi-bin/koha/recalls/request.pl?biblionumber=[% biblio.biblionumber | uri %]" class="cancel">Cancel</a>
184
                    <a href="/cgi-bin/koha/recalls/request.pl?biblionumber=[% biblio.biblionumber | uri %]" class="cancel">Cancel</a>
185
                </fieldset>
185
                </fieldset>
Lines 188-194 Link Here
188
    [% ELSE %]
188
    [% ELSE %]
189
189
190
        [% IF Koha.Preference('UseRecalls') == 'opac' %]
190
        [% IF Koha.Preference('UseRecalls') == 'opac' %]
191
            <div class="dialog alert"> Due to the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=UseRecalls">UseRecalls</a> system preference, recalls cannot be placed through the staff interface. </div>
191
            <div class="alert alert-warning"> Due to the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=UseRecalls">UseRecalls</a> system preference, recalls cannot be placed through the staff interface. </div>
192
        [% ELSE %]
192
        [% ELSE %]
193
            <fieldset>
193
            <fieldset>
194
                <h2>Search patrons</h2>
194
                <h2>Search patrons</h2>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-2 / +1 lines)
Lines 253-259 Link Here
253
        [% END %]
253
        [% END %]
254
254
255
        [% IF ( recallerror ) %]
255
        [% IF ( recallerror ) %]
256
            <div class="dialog alert">
256
            <div class="alert alert-warning">
257
                <h3>Hold cannot be converted to a recall</h3>
257
                <h3>Hold cannot be converted to a recall</h3>
258
                <p>A recall cannot be placed for one or more holds. Check your <a href="/cgi-bin/koha/admin/smart-rules.pl">circulation and fine rules</a>.</p>
258
                <p>A recall cannot be placed for one or more holds. Check your <a href="/cgi-bin/koha/admin/smart-rules.pl">circulation and fine rules</a>.</p>
259
            </div>
259
            </div>
260
- 

Return to bug 31391