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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt (-4 / +10 lines)
Lines 156-168 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
156
</table>
156
</table>
157
    [% ELSE %]
157
    [% ELSE %]
158
        [% IF ( emptyserverlist ) %]
158
        [% IF ( emptyserverlist ) %]
159
            You didn't select any Z39.50 target.
159
            <div class="dialog alert">You didn't select any Z39.50 target.</div>
160
        [% ELSE %]
160
        [% ELSE %]
161
            [% FOREACH errcon IN errconn %]
161
            [% IF ( errconn ) %]
162
                Connection failed to [% errcon.server %]
162
                <div class="dialog alert">
163
                    <ul>
164
                    [% FOREACH errcon IN errconn %]
165
                        <li>Connection failed to [% errcon.server %]</li>
166
                    [% END %]
167
                    </ul>
168
                </div>
163
            [% END %]
169
            [% END %]
164
        [% END %]
170
        [% END %]
165
        <p>Nothing found. <a href="javascript: history.back()">Try another search</a>.</p>
171
        <div class="dialog message">Nothing found. <a href="javascript: history.back()">Try another search</a>.</div>
166
    [% END %]
172
    [% END %]
167
173
168
174
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt (-9 / +10 lines)
Lines 162-175 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
162
</table>
162
</table>
163
<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber %]"/><input type="hidden" name="frameworkcode" value="[% frameworkcode %]"/><input type="submit" value="Try Another Search"/></form></p>
163
<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber %]"/><input type="hidden" name="frameworkcode" value="[% frameworkcode %]"/><input type="submit" value="Try Another Search"/></form></p>
164
    [% ELSE %]
164
    [% ELSE %]
165
        [% IF ( emptyserverlist ) %]
165
        [% IF ( errconn ) %]
166
            You didn't select any Z39.50 target.
166
            <div class="dialog alert">
167
        [% ELSE %]
167
                <ul>
168
            [% FOREACH errcon IN errconn %]
168
                [% FOREACH errcon IN errconn %]
169
                Connection failed to [% errcon.server %]
169
                    <li>Connection failed to [% errcon.server %]</li>
170
            [% END %]
170
                [% END %]
171
        [% END %]
171
                </ul>
172
	<p>Nothing found.</p>
172
            </div>
173
         [% END %]
174
   <div class="dialog message">Nothing found.</div>
173
	<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber %]"/><input type="hidden" name="frameworkcode" value="[% frameworkcode %]"/><input type="submit" value="Try Another Search"/></form></p>
175
	<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber %]"/><input type="hidden" name="frameworkcode" value="[% frameworkcode %]"/><input type="submit" value="Try Another Search"/></form></p>
174
    [% END %]
176
    [% END %]
175
177
176
- 

Return to bug 7147