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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt (-35 / +27 lines)
Lines 92-134 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
92
	<div class="yui-g">
92
	<div class="yui-g">
93
    <div class="yui-u first">
93
    <div class="yui-u first">
94
	    <fieldset class="rows">
94
	    <fieldset class="rows">
95
         <ol><li><label for="searchtitle">Title: </label> <input type="text" id="searchtitle"  name="title" value="[% title |html %]" class="focus" /></li>
95
         <ol>
96
		 <li><label for="isbn">ISBN: </label> <input type="text" id="isbn" name="isbn" value="[% isbn %]" /></li>
96
             <li><label for="searchtitle">Title: </label> <input type="text" id="searchtitle"  name="title" value="[% title |html %]" class="focus" /></li>
97
         <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
97
	     <li><label for="isbn">ISBN: </label> <input type="text" id="isbn" name="isbn" value="[% isbn %]" /></li>
98
         <li><label for="controlnumber">Control no.: </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li>
98
             <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
99
</ol>
99
             <li><label for="controlnumber">Control no.: </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li>
100
		</fieldset>
100
             <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author %]" /></li>
101
	    </div>
101
             <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn %]" /></li>
102
    <div class="yui-u">
102
             <li> <label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
103
    <fieldset class="rows">
103
	     <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li>
104
        <ol>
104
             <li><label for="frameworkcode" >Select MARC framework:</label>
105
        <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author %]" /></li>
105
             <select id="frameworkcode" name="frameworkcode" >
106
         <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn %]" /></li>
106
             <option value="">Default</option>
107
         <li> <label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
107
                 [% FOREACH frameworkcodeloo IN frameworkcodeloop %]
108
		 <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li></ol></fieldset>
108
                    [% IF ( frameworkcodeloo.active ) %]
109
	     <fieldset class="rows" >
109
                        <option value="[% frameworkcodeloo.value %]" selected="selected" >[% frameworkcodeloo.frameworktext %]</option>
110
                 <ol>
110
                    [% ELSE %]
111
                     <li>
111
                        <option value="[% frameworkcodeloo.value %]" >[% frameworkcodeloo.frameworktext %]</option>
112
                         <label for="frameworkcode" >Select used MARC framework:</label>
112
                    [% END %]
113
                         <select id="frameworkcode" name="frameworkcode" >
113
                 [% END %]
114
                             <option value="">Default</option>
114
              </select>
115
                         [% FOREACH frameworkcodeloo IN frameworkcodeloop %]
115
              </li>
116
                             [% IF ( frameworkcodeloo.active ) %]
116
         </ol>
117
                                 <option value="[% frameworkcodeloo.value %]" selected="selected" >[% frameworkcodeloo.frameworktext %]</option>
117
    </fieldset>
118
                             [% ELSE %]
119
                                 <option value="[% frameworkcodeloo.value %]" >[% frameworkcodeloo.frameworktext %]</option>
120
                             [% END %]
121
                         [% END %]
122
                         </select>
123
                     </li>
124
                 </ol>
125
             </fieldset>
126
    <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
118
    <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
127
    <input type="hidden" name="basketno" value="[% basketno %]" />
119
    <input type="hidden" name="basketno" value="[% basketno %]" />
128
    <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
120
    <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
129
	    </div>
121
	    </div>
130
</div>
122
<div class="yui-u second">
131
<div class="yui-g">
132
<h2>Search targets <span style="display: inline; font-size: 70%; padding-left: 1em;"><span class="checkall"><a id="CheckAll" href="#">Select all</a></span><span class="clearall"><a id="CheckNone" href="#">Clear all</a></span></span></h2>
123
<h2>Search targets <span style="display: inline; font-size: 70%; padding-left: 1em;"><span class="checkall"><a id="CheckAll" href="#">Select all</a></span><span class="clearall"><a id="CheckNone" href="#">Clear all</a></span></span></h2>
133
124
134
    [% FOREACH serverloo IN serverloop %]
125
    [% FOREACH serverloo IN serverloop %]
Lines 142-149 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
142
133
143
        </p>
134
        </p>
144
    [% END %]
135
    [% END %]
145
    <fieldset class="action"><input type="submit"  class="submit" value="Search" onclick="cursor :'wait'"/> <a class="cancel" href="/cgi-bin/koha/acqui/basket.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]">Cancel</a></fieldset>
146
    </div>
136
    </div>
137
    <fieldset class="action"><input type="submit"  class="submit" value="Search" onclick="cursor :'wait'"/> <a class="cancel" href="/cgi-bin/koha/acqui/basket.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]">Cancel</a></fieldset>
138
139
</div>
147
    </form>
140
    </form>
148
141
149
142
150
- 

Return to bug 13218