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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt (-2 / +1 lines)
Lines 127-134 Link Here
127
127
128
			<tbody>
128
			<tbody>
129
					[% FOREACH to_branch_loo IN codes_loo.to_branch_loop %]
129
					[% FOREACH to_branch_loo IN codes_loo.to_branch_loop %]
130
						[% UNLESS ( loop.odd ) %]<tr class="highlight"><!-- TMPL_ELSE
130
						[% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
131
--><tr>[% END %]
132
							<td><label style="min-width:400px;" for="[% to_branch_loo.code %][% to_branch_loo.toBranch %]row">[% to_branch_loo.toBranch %] - [% to_branch_loo.toBranchname %]</label></td>
131
							<td><label style="min-width:400px;" for="[% to_branch_loo.code %][% to_branch_loo.toBranch %]row">[% to_branch_loo.toBranch %] - [% to_branch_loo.toBranchname %]</label></td>
133
							<td><input type="checkbox" id="[% to_branch_loo.code %][% to_branch_loo.toBranch %]row" name="[% to_branch_loo.code %]_[% to_branch_loo.toBranch %]" [% IF ( to_branch_loo.isChecked ) %]checked="checked" [% END %] /></td>
132
							<td><input type="checkbox" id="[% to_branch_loo.code %][% to_branch_loo.toBranch %]row" name="[% to_branch_loo.code %]_[% to_branch_loo.toBranch %]" [% IF ( to_branch_loo.isChecked ) %]checked="checked" [% END %] /></td>
134
						</tr>
133
						</tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt (-2 / +1 lines)
Lines 33-40 Link Here
33
            </tr></thead>
33
            </tr></thead>
34
            <tbody>
34
            <tbody>
35
        [% FOREACH issue IN issues %]
35
        [% FOREACH issue IN issues %]
36
        [% UNLESS ( loop.odd ) %]<tr class="highlight"><!-- TMPL_ELSE
36
        [% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
37
--><tr>[% END %]
38
                <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issue.borrowernumber %]">[% issue.surname %][% IF ( issue.firstname ) %], [% issue.firstname %][% END %]</a></td>
37
                <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issue.borrowernumber %]">[% issue.surname %][% IF ( issue.firstname ) %], [% issue.firstname %][% END %]</a></td>
39
                <td>[% IF ( issue.barcode ) %]
38
                <td>[% IF ( issue.barcode ) %]
40
                        <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% issue.biblionumber %]&amp;itemnumber=[% issue.itemnumber %]">[% issue.barcode %]</a>
39
                        <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% issue.biblionumber %]&amp;itemnumber=[% issue.itemnumber %]">[% issue.barcode %]</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-recieve.tt (-3 / +1 lines)
Lines 4-11 Link Here
4
<script language="JavaScript" type="text/javascript">
4
<script language="JavaScript" type="text/javascript">
5
//<![CDATA[
5
//<![CDATA[
6
function popup() {
6
function popup() {
7
	window.open("subscription-renew.pl?subscriptionid=<!-- TMPL_VAR
7
	window.open("subscription-renew.pl?subscriptionid=[% subscriptionid %]","subscription_renewal",'width=700,height=400,toolbar=false,scrollbars=yes');
8
name="subscriptionid">","subscription_renewal",'width=700,height=400,toolbar=false,scrollbars=yes');
9
}
8
}
10
9
11
function barcode_check(){
10
function barcode_check(){
12
- 

Return to bug 5917