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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-1 / +5 lines)
Lines 60-66 Link Here
60
        <fieldset class="rows"><ol>
60
        <fieldset class="rows"><ol>
61
        <li>
61
        <li>
62
			 [% IF ( action_add_category ) %]<label for="category">Category</label>
62
			 [% IF ( action_add_category ) %]<label for="category">Category</label>
63
		<input type="text" name="category"  id="category" size="10" maxlength="10" />
63
            <input type="text" name="category"  id="category" size="10" maxlength="10" class="focus" />
64
			 [% ELSE %]<span class="label">Category</span>
64
			 [% ELSE %]<span class="label">Category</span>
65
		<input type="hidden" name="category" value="[% category %]" />	 [% category %]
65
		<input type="hidden" name="category" value="[% category %]" />	 [% category %]
66
			 [% END %]
66
			 [% END %]
Lines 68-74 Link Here
68
        <li>
68
        <li>
69
            <label for="authorised_value">Authorized value</label>
69
            <label for="authorised_value">Authorized value</label>
70
     [% IF ( action_modify ) %]<input type="hidden" id="id" name="id" value="[% id %]" />[% END %]
70
     [% IF ( action_modify ) %]<input type="hidden" id="id" name="id" value="[% id %]" />[% END %]
71
            [% IF ( action_add_category ) %]
71
            <input type="text" id="authorised_value" name="authorised_value" value="[% authorised_value %]" maxlength="80" />
72
            <input type="text" id="authorised_value" name="authorised_value" value="[% authorised_value %]" maxlength="80" />
73
            [% ELSE %]
74
            <input type="text" id="authorised_value" name="authorised_value" value="[% authorised_value %]" maxlength="80" class="focus" />
75
            [% END %]
72
        </li>
76
        </li>
73
        <li>
77
        <li>
74
            <label for="lib">Description</label>
78
            <label for="lib">Description</label>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-3 / +6 lines)
Lines 168-178 Item types administration Link Here
168
     </li>
168
     </li>
169
  [% ELSE %]
169
  [% ELSE %]
170
      <li>
170
      <li>
171
          <label for="itemtype">Item type</label> <input type="text" id="itemtype" name="itemtype" size="10" maxlength="10" onblur="toUC(this)" />
171
          <label for="itemtype">Item type</label> <input type="text" id="itemtype" name="itemtype" size="10" maxlength="10" onblur="toUC(this)" class="focus" />
172
      </li>
172
      </li>
173
  [% END %]
173
  [% END %]
174
      <li>
174
      <li>
175
          <label for="description">Description</label><input type="text" id="description" name="description" size="48" value="[% description |html %]" />      </li>
175
      [% IF ( itemtype ) %]
176
          <label for="description">Description</label><input type="text" id="description" name="description" size="48" value="[% description |html %]" class="focus" /></li>
177
      [% ELSE %]
178
          <label for="description">Description</label><input type="text" id="description" name="description" size="48" value="[% description |html %]" /></li>
179
      [% END %]
176
     [% IF ( noItemTypeImages ) %]
180
     [% IF ( noItemTypeImages ) %]
177
	 <li><span class="label">Image: </span>Item type images are disabled. To enable them, turn off the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&amp;searchfield=noItemTypeImages">noItemTypeImages system preference</a></li></ol>
181
	 <li><span class="label">Image: </span>Item type images are disabled. To enable them, turn off the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&amp;searchfield=noItemTypeImages">noItemTypeImages system preference</a></li></ol>
178
	 [% ELSE %]</ol>
182
	 [% ELSE %]</ol>
179
- 

Return to bug 9137