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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt (-1 / +1 lines)
Lines 182-188 function submitForm(form) { Link Here
182
					<fieldset id="various" class="brief">
182
					<fieldset id="various" class="brief">
183
					<ol>
183
					<ol>
184
                        <li><label for="basketgroupname">Basket group name:</label>
184
                        <li><label for="basketgroupname">Basket group name:</label>
185
							<input type="text" name="basketgroupname" id="basketgroupname" value="[% name %]" /></li>
185
                                                       <input type="text" name="basketgroupname" id="basketgroupname" value="[% name %]" class="focus" /></li>
186
                        <li><label for="billingplace">Billing place:</label>
186
                        <li><label for="billingplace">Billing place:</label>
187
							<select name="billingplace" id="billingplace" style="width:13em;">
187
							<select name="billingplace" id="billingplace" style="width:13em;">
188
                                <option value="">--</option>
188
                                <option value="">--</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketheader.tt (-1 / +1 lines)
Lines 66-72 function Check(ff) { Link Here
66
                [% END %]
66
                [% END %]
67
                <li>
67
                <li>
68
                    <label for="basketname" class="required">Basket name: </label> &nbsp;
68
                    <label for="basketname" class="required">Basket name: </label> &nbsp;
69
                        <input type="text" name="basketname" id="basketname" size="40" maxlength="80" value="[% basketname %]" />
69
                        <input type="text" name="basketname" id="basketname" size="40" maxlength="80" value="[% basketname %]" class="focus" />
70
                </li>
70
                </li>
71
                 <li>
71
                 <li>
72
                    <label for="billingplace">Billing place:</label>
72
                    <label for="billingplace">Billing place:</label>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt (-1 / +1 lines)
Lines 145-151 $(document).ready(function() { Link Here
145
        <ol>
145
        <ol>
146
          <li>
146
          <li>
147
            <label for="invoicenumber">Invoice no:</label>
147
            <label for="invoicenumber">Invoice no:</label>
148
            <input type="text" id="invoicenumber" name="invoicenumber" value="[% invoicenumber %]" />
148
            <input type="text" id="invoicenumber" name="invoicenumber" value="[% invoicenumber %]" class="focus" />
149
          </li>
149
          </li>
150
          <li>
150
          <li>
151
            <label for="supplier">Vendor:</label>
151
            <label for="supplier">Vendor:</label>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/modordernotes.tt (-1 / +1 lines)
Lines 16-22 Link Here
16
      <form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
16
      <form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
17
        <fieldset class="brief">
17
        <fieldset class="brief">
18
          <label for="ordernotes">Notes:</label>
18
          <label for="ordernotes">Notes:</label>
19
          <textarea id="ordernotes" name="ordernotes" rows="3" cols="30">[% ordernotes %]</textarea>
19
          <textarea id="ordernotes" name="ordernotes" rows="3" cols="30" class="focus">[% ordernotes %]</textarea>
20
        </fieldset>
20
        </fieldset>
21
        <input type="hidden" name="referrer" value="[% referrer %]" />
21
        <input type="hidden" name="referrer" value="[% referrer %]" />
22
        <input type="hidden" name="ordernumber" value="[% ordernumber %]" />
22
        <input type="hidden" name="ordernumber" value="[% ordernumber %]" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-1 / +1 lines)
Lines 239-245 $(document).ready(function() Link Here
239
                <input type="hidden" name="title" value="[% title |html %]" /> <span class="title">[% title |html %]</span>
239
                <input type="hidden" name="title" value="[% title |html %]" /> <span class="title">[% title |html %]</span>
240
            [% ELSE %]
240
            [% ELSE %]
241
            <label for="entertitle" class="required">Title: </label>
241
            <label for="entertitle" class="required">Title: </label>
242
                <input type="text" id="entertitle" size="50" name="title" value="[% title |html %]" />
242
                <input type="text" id="entertitle" size="50" name="title" value="[% title |html %]" class="focus" />
243
            [% END %]
243
            [% END %]
244
        </li>
244
        </li>
245
        <li>
245
        <li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-1 / +1 lines)
Lines 66-72 if (f.company.value == "") { Link Here
66
        <fieldset class="rows">
66
        <fieldset class="rows">
67
            <legend>Company details</legend>
67
            <legend>Company details</legend>
68
            <ol><li><label for="company" class="required">Name: * </label>
68
            <ol><li><label for="company" class="required">Name: * </label>
69
                <input type="text" size="40" id="company" name="company" value="[% name %]" /></li>
69
                <input type="text" size="40" id="company" name="company" value="[% name %]" class="focus" /></li>
70
            <li><label for="company_postal">Postal address: </label>
70
            <li><label for="company_postal">Postal address: </label>
71
                    <textarea id="company_postal" name="company_postal" cols="40" rows="3">[% postal %]</textarea></li>
71
                    <textarea id="company_postal" name="company_postal" cols="40" rows="3">[% postal %]</textarea></li>
72
            <li><label for="physical">Physical address: </label>
72
            <li><label for="physical">Physical address: </label>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt (-2 / +1 lines)
Lines 90-96 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
90
	<div class="yui-g">
90
	<div class="yui-g">
91
    <div class="yui-u first">
91
    <div class="yui-u first">
92
	    <fieldset class="rows">
92
	    <fieldset class="rows">
93
		 <ol><li><label for="searchtitle">Title: </label> <input type="text" id="searchtitle"  name="title" value="[% title |html %]" /></li>
93
         <ol><li><label for="searchtitle">Title: </label> <input type="text" id="searchtitle"  name="title" value="[% title |html %]" class="focus" /></li>
94
		 <li><label for="isbn">ISBN: </label> <input type="text" id="isbn" name="isbn" value="[% isbn %]" /></li>
94
		 <li><label for="isbn">ISBN: </label> <input type="text" id="isbn" name="isbn" value="[% isbn %]" /></li>
95
         <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
95
         <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
96
         <li><label for="controlnumber">Control no.: </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li>
96
         <li><label for="controlnumber">Control no.: </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li>
97
- 

Return to bug 7469