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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt (-5 / +4 lines)
Lines 275-285 function yuiToolbar() { Link Here
275
			[% FOREACH basketgroup IN basketgroups %]
275
			[% FOREACH basketgroup IN basketgroups %]
276
				[% UNLESS ( basketgroup.closed ) %]
276
				[% UNLESS ( basketgroup.closed ) %]
277
					<tr>
277
					<tr>
278
						<td><a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% basketgroup.booksellerid %]&amp;basketgroupid=[% basketgroup.id %]">[% IF ( basketgroup.name ) %]
278
						<td>[% IF ( basketgroup.name ) %]
279
													[% basketgroup.name %]
279
													[% basketgroup.name %]
280
												[% ELSE %]
280
												[% ELSE %]
281
													Basket group no. [% basketgroup.id %]
281
													Basket group no. [% basketgroup.id %]
282
												[% END %]</a>
282
												[% END %]
283
						</td>
283
						</td>
284
							<td>
284
							<td>
285
                              <span>
285
                              <span>
Lines 306-316 function yuiToolbar() { Link Here
306
				[% IF ( basketgroup.closed ) %]
306
				[% IF ( basketgroup.closed ) %]
307
				<tr>
307
				<tr>
308
				<td>
308
				<td>
309
                    <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=reopen&amp;booksellerid=[% basketgroup.booksellerid %]&amp;basketgroupid=[% basketgroup.id %]">[% IF ( basketgroup.name ) %]
309
                                     [% IF ( basketgroup.name ) %]
310
											[% basketgroup.name %]
310
											[% basketgroup.name %]
311
										[% ELSE %]
311
										[% ELSE %]
312
											Basket group no. [% basketgroup.id %]
312
											Basket group no. [% basketgroup.id %]
313
										[% END %]</a>
313
										[% END %]
314
					</td>
314
					</td>
315
					<td>
315
					<td>
316
							<form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="reopen" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Reopen" /></form>
316
							<form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="reopen" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Reopen" /></form>
317
- 

Return to bug 8853