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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/addItems.tt (-1 / +2 lines)
Lines 44-50 Link Here
44
            <th><label for="barcode">Barcode: </label></td>
44
            <th><label for="barcode">Barcode: </label></td>
45
            <td><input type="text" id="barcode" name="barcode" /></td>
45
            <td><input type="text" id="barcode" name="barcode" /></td>
46
            <td>
46
            <td>
47
              <input type="checkbox" name="removeItem" [% IF ( removeChecked ) %]checked[% END %] >
47
              [% IF ( removeChecked ) %]<input type="checkbox" name="removeItem" checked="checked" />
48
              [% ELSE %]<input type="checkbox" name="removeItem" />[% END %]
48
              <label for="removeItem">Remove Item from Collection</label>
49
              <label for="removeItem">Remove Item from Collection</label>
49
            </td>
50
            </td>
50
          </tr>
51
          </tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/editCollections.tt (-3 / +4 lines)
Lines 89-95 Link Here
89
                <label for="title">Title: </label>
89
                <label for="title">Title: </label>
90
              </td>
90
              </td>
91
              <td>
91
              <td>
92
               <input type="text" name="title" [% IF ( editColTitle ) %] value="[% editColTitle %]" [% END %] />
92
                [% IF ( editColTitle ) %]<input type="text" name="title" value="[% editColTitle %]" />
93
                [% ELSE %]<input type="text" name="title" />[% END %]
93
              </td>
94
              </td>
94
            </tr>
95
            </tr>
95
        
96
        
Lines 98-104 Link Here
98
                <label for="description">Description: </label>
99
                <label for="description">Description: </label>
99
              </td>
100
              </td>
100
              <td>
101
              <td>
101
                <input type="text" size="50" name="description" [% IF ( editColDescription ) %] value="[% editColDescription %]" [% END %] />
102
                [% IF (editColDescription ) %]<input type="text" size="50" name="description" value="[ editColDescription %]" />
103
                [% ELSE %]<input type="text" size="50" name="description" />[% END %]
102
              </td>
104
              </td>
103
            </tr>
105
            </tr>
104
106
105
- 

Return to bug 6458