Lines 6-18
Link Here
|
6 |
<title>[% FILTER collapse %] |
6 |
<title>[% FILTER collapse %] |
7 |
[% IF ean_form %] |
7 |
[% IF ean_form %] |
8 |
[% IF ean %] |
8 |
[% IF ean %] |
9 |
[% t("Modify library EAN") | html %] |
9 |
[% tx("Modify library EAN '{ean}'", { ean = ean.description }) %] |
10 |
[% ELSE %] |
10 |
[% ELSE %] |
11 |
[% t("Add new library EAN") | html %] |
11 |
[% t("New library EAN") | html %] |
12 |
[% END %] › |
12 |
[% END %] › |
13 |
[% END %] |
13 |
[% END %] |
14 |
[% IF delete_confirm %] |
14 |
[% IF delete_confirm %] |
15 |
[% t("Confirm deletion of EAN") | html %] › |
15 |
[% IF ( ean.branch.branchname ) %] |
|
|
16 |
[% tx("Confirm deletion of EAN '{ean}' for '{library}'?", { ean = ean.description, library = ean.branch.branchname }) %] |
17 |
[% ELSE %] |
18 |
[% tx("Confirm deletion of EAN '{ean}'?", { ean = ean.description }) %] |
19 |
[% END %] › |
16 |
[% END %] |
20 |
[% END %] |
17 |
[% t("Library EANs") | html %] › |
21 |
[% t("Library EANs") | html %] › |
18 |
[% t("Administration") | html %] › |
22 |
[% t("Administration") | html %] › |
Lines 37-45
Link Here
|
37 |
[% END %] |
41 |
[% END %] |
38 |
[% WRAPPER breadcrumb_item bc_active= 1%] |
42 |
[% WRAPPER breadcrumb_item bc_active= 1%] |
39 |
[% IF ean %] |
43 |
[% IF ean %] |
40 |
<span>Modify library EAN</span> |
44 |
[% tx("Modify library EAN '{ean}'", { ean = ean.description }) %] |
41 |
[% ELSE %] |
45 |
[% ELSE %] |
42 |
<span>Add new library EAN</span> |
46 |
<span>New library EAN</span> |
43 |
[% END %] |
47 |
[% END %] |
44 |
[% END %] |
48 |
[% END %] |
45 |
|
49 |
|
Lines 48-54
Link Here
|
48 |
<a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a> |
52 |
<a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a> |
49 |
[% END %] |
53 |
[% END %] |
50 |
[% WRAPPER breadcrumb_item bc_active= 1%] |
54 |
[% WRAPPER breadcrumb_item bc_active= 1%] |
51 |
<span>Confirm deletion of EAN</span> |
55 |
[% IF ( ean.branch.branchname ) %] |
|
|
56 |
[% tx("Confirm deletion of EAN '{ean}' for '{library}'?", { ean = ean.description, library = ean.branch.branchname }) %] |
57 |
[% ELSE %] |
58 |
[% tx("Confirm deletion of EAN '{ean}'?", { ean = ean.description }) %] |
59 |
[% END %] |
52 |
[% END %] |
60 |
[% END %] |
53 |
|
61 |
|
54 |
[% ELSE %] |
62 |
[% ELSE %] |
Lines 81-96
Link Here
|
81 |
<input type="hidden" name="id" value="[% ean.id | html %]" /> |
89 |
<input type="hidden" name="id" value="[% ean.id | html %]" /> |
82 |
[% END %] |
90 |
[% END %] |
83 |
|
91 |
|
|
|
92 |
<h1> |
93 |
[% IF ean %] |
94 |
[% tx("Modify library EAN '{ean}'", { ean = ean.description }) %] |
95 |
[% ELSE %] |
96 |
<span>New EAN</span> |
97 |
[% END %] |
98 |
</h1> |
99 |
|
84 |
<fieldset class="rows"> |
100 |
<fieldset class="rows"> |
85 |
<legend> |
101 |
<legend class="sr-only">EAN details</legend> |
86 |
<h1> |
|
|
87 |
[% IF ean %] |
88 |
Modify EAN |
89 |
[% ELSE %] |
90 |
New EAN |
91 |
[% END %] |
92 |
</h1> |
93 |
</legend> |
94 |
|
102 |
|
95 |
<ol> |
103 |
<ol> |
96 |
<li> |
104 |
<li> |
Lines 142-148
Link Here
|
142 |
|
150 |
|
143 |
[% IF delete_confirm %] |
151 |
[% IF delete_confirm %] |
144 |
<div class="dialog alert"> |
152 |
<div class="dialog alert"> |
145 |
<h1>Delete EAN [% ean.ean | html %] for [% ean.branch.branchname | html %]?</h1> |
153 |
<h1> |
|
|
154 |
[% IF ( ean.branch.branchname ) %] |
155 |
[% tx("Confirm deletion of EAN '{ean}' for '{library}'?", { ean = ean.description, library = ean.branch.branchname }) %] |
156 |
[% ELSE %] |
157 |
[% tx("Confirm deletion of EAN '{ean}'?", { ean = ean.description }) %] |
158 |
[% END %] |
159 |
</h1> |
160 |
|
146 |
<form action="/cgi-bin/koha/admin/edi_ean_accounts.pl" method="post"> |
161 |
<form action="/cgi-bin/koha/admin/edi_ean_accounts.pl" method="post"> |
147 |
<input type="hidden" name="op" value="delete_confirmed" /> |
162 |
<input type="hidden" name="op" value="delete_confirmed" /> |
148 |
<input type="hidden" name="id" value="[% ean.id | html %]" /> |
163 |
<input type="hidden" name="id" value="[% ean.id | html %]" /> |
149 |
- |
|
|