Bugzilla – Attachment 50005 Details for
Bug 16206
Corrections to templates related new EDI feature
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 16206: Corrections to templates related new EDI feature
SIGNED-OFF-Bug-16206-Corrections-to-templates-rela.patch (text/plain), 22.57 KB, created by
Bernardo Gonzalez Kriegel
on 2016-04-06 19:59:23 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 16206: Corrections to templates related new EDI feature
Filename:
MIME Type:
Creator:
Bernardo Gonzalez Kriegel
Created:
2016-04-06 19:59:23 UTC
Size:
22.57 KB
patch
obsolete
>From aa3e72ac82355bd308cba1e51523640c81c5d56e Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 5 Apr 2016 11:44:22 -0400 >Subject: [PATCH] [SIGNED-OFF] Bug 16206: Corrections to templates related new > EDI feature > >There are some issues with the template changes introduced by the EDI >feature in Bug 7736. This patch makes the following changes: > >- Use Font Awesome icon on the Acquisitions basket page instead of a > Glyphicon. >- Use Font Awesome icon on the Acquisitions basket group page instead of > a Glyphicon. >- For consistency's sake, use the phrase "Library EANs" instead of "EDI > EANs" in menus and the Library EANs page. > >- On the EDI accounts page: > - Correct the markup of the title tag. > - Improve the breadcrumbs to eliminate redundancy. > - Use Font Awesome icon instead of Glyphicon for the "New account" > button. > - Change or remove "maxlength" attribute of form fields to match table > structure. > - Move the contents of some title attributes into a visible hint. > - Use 'checked="checked"' instead of 'checked'. Koha templates use > XTHML-style attributes. > - Correct template variable in account deletion confirmation dialog. > Before this patch the vendor name was not correctly displayed. > - Show a message if there are no accounts defined rather than an empty > table. > - Remove use of "highlight" class from table rows (Bug 15927). > - Correct parameter name in link to vendor details page (should be > booksellerid instead of supplierid). > - Correct the markup of the deletion confirmation dialog (Bug 15785). > - Use Bootstrap-style buttons for "edit" and "delete," with Font > Awesome icons. > >- On the Library EANs page: > - Correct the markup of the title tag. > - Make capitalization of "EAN" consistent. > - Use Font Awesome icon instead of Glyphicon for the "New EAN" button. > - Show a message if there are no EANs defined rather than an empty > table. > - Change or remove "maxlength" attribute of form fields to match table > structure. > - Remove use of "highlight" class from table rows (Bug 15927). > - Correct the markup of the deletion confirmation dialog (Bug 15785). > - Use Bootstrap-style buttons for "edit" and "delete," with Font > Awesome icons. > >To test, apply the patch and review the affected templates. Confirm that >pages look correct and work correctly. > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >All seems to work and looks well, >add/edit/delete EDI accounts and Library EANs works Ok >No errors >--- > .../intranet-tmpl/prog/en/includes/admin-menu.inc | 2 +- > .../intranet-tmpl/prog/en/modules/acqui/basket.tt | 2 +- > .../prog/en/modules/acqui/basketgroup.tt | 2 +- > .../prog/en/modules/admin/admin-home.tt | 4 +- > .../prog/en/modules/admin/edi_accounts.tt | 83 ++++++++++++---------- > .../prog/en/modules/admin/edi_ean_accounts.tt | 40 ++++++----- > 6 files changed, 71 insertions(+), 62 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc >index 8a21712..781da2a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc >@@ -56,7 +56,7 @@ > <li><a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a></li> > <li><a href="/cgi-bin/koha/admin/aqbudgets.pl">Funds</a></li> > <li><a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI accounts</a></li> >- <li><a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">EDI eans</a></li> >+ <li><a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a></li> > </ul> > > [% IF CAN_user_plugins %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >index 9ab28be..5aec704 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >@@ -184,7 +184,7 @@ > [% END %] > <div class="btn-group"><a href="[% script_name %]?op=export&basketno=[% basketno %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="fa fa-download"></i> Export this basket as CSV</a></div> > [% IF ediaccount %] >- <div class="btn-group"><a href="/cgi-bin/koha/acqui/edi_ean.pl?op=ediorder&basketno=[% basketno %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="ediorderbutton"><i class="icon-download"></i>Create edifact order</a></div> >+ <div class="btn-group"><a href="/cgi-bin/koha/acqui/edi_ean.pl?op=ediorder&basketno=[% basketno %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="ediorderbutton"><i class="fa fa-download"></i> Create edifact order</a></div> > [% END %] > </div> > <!-- Modal for confirm deletion box--> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt >index e2dac37..1950fce 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt >@@ -144,7 +144,7 @@ function submitForm(form) { > <div class="btn-group"><a href="[% script_name %]?op=reopen&basketgroupid=[% basketgroupid %]&booksellerid=[% booksellerid %]&mode=singlebg" class="btn btn-small" id="reopenbutton"><i class="fa fa-download"></i> Reopen this basket group</a></div> > <div class="btn-group"><a href="[% script_name %]?op=export&basketgroupid=[% basketgroupid %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="fa fa-download"></i> Export this basket group as CSV</a></div> > <div class="btn-group"><a href="[% script_name %]?op=print&basketgroupid=[% basketgroupid %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="printbutton"><i class="fa fa-download"></i> Print this basket group in PDF</a></div> >- <div class="btn-group"><a href="[% script_name %]?op=ediprint&basketgroupid=[% basketgroupid %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="printbutton"><i class="icon-download"></i>Generate edifact order</a></div> >+ <div class="btn-group"><a href="[% script_name %]?op=ediprint&basketgroupid=[% basketgroupid %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="printbutton"><i class="fa fa-download"></i> Generate edifact order</a></div> > </div> > [% ELSE %] > <div class="btn-group"><a href="[% script_name %]?op=delete&basketgroupid=[% basketgroupid %]&booksellerid=[% booksellerid %]" class="btn btn-small" id="delbutton"><i class="fa fa-remove"></i> Delete basket group</a></div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt >index 32bca5a..bd951bc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt >@@ -98,9 +98,9 @@ > <dt><a href="/cgi-bin/koha/admin/aqbudgets.pl">Funds</a></dt> > <dd>Define funds within your budgets</dd> > >- <dt><a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI Accounts</a></dt> >+ <dt><a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI accounts</a></dt> > <dd>Manage vendor EDI accounts for import/export</dd> >- <dt><a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">EDI EANs</a></dt> >+ <dt><a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a></dt> > <dd>Manage library EDI EANs</dd> > </dl> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt >index 93c2ce4..926557b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt >@@ -2,13 +2,13 @@ > <title>Koha › Administration › EDI accounts > [% IF acct_form %] > [% IF account %] >- ’ Modify account >+ › Modify account > [% ELSE %] >- ’ Add new account >+ › Add new account > [% END %] > [% END %] > [% IF delete_confirm %] >- ’ Confirm deletion of account >+ › Confirm deletion of account > [% END %] > </title> > [% INCLUDE 'doc-head-close.inc' %] >@@ -19,18 +19,17 @@ > > <div id="breadcrumbs"> > <a href="/cgi-bin/koha/mainpage.pl">Home</a> >- › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> >- › <a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI accounts</a> >-[% IF acct_form %] >+› <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> >+ [% IF acct_form %] > [% IF account %] >- › Modify account >+ <a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI accounts</a> › Modify account > [% ELSE %] >- › Add new account >+ <a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI accounts</a> › Add new account > [% END %] > [% ELSIF delete_confirm %] >- › Confirm deletion of account >+ <a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI accounts</a> › Confirm deletion of account > [% ELSE %] >- › Accounts >+ › EDI accounts > [% END %] > </div> > >@@ -42,7 +41,7 @@ > [% IF display %] > <div id="toolbar" class="btn-toolbar"> > <a class="btn btn-small" id="newediacct" href="/cgi-bin/koha/admin/edi_accounts.pl?op=acct_form"> >- <i class="icon-plus"></i> >+ <i class="fa fa-plus"></i> > New account > </a> > </div> >@@ -91,7 +90,7 @@ > </li> > <li> > <label for="description">Description: </label> >- <input type="text" name="description" id="description" size="20" maxlength="90" value="[% account.description %]" /> >+ <input type="text" name="description" id="description" size="20" value="[% account.description %]" /> > </li> > <li> > [% transport_types = [ >@@ -112,27 +111,25 @@ > </li> > <li> > <label for="host">Remote host: </label> >- <input type="text" name="host" id="host" size="20" maxlength="90" value="[% account.host %]" /> >+ <input type="text" name="host" id="host" size="20" maxlength="40" value="[% account.host %]" /> > </li> > <li> > <label for="username">Username: </label> >- <input type="text" name="username" id="username" size="20" maxlength="90" value="[% account.username %]" /> >+ <input type="text" name="username" id="username" size="20" maxlength="40" value="[% account.username %]" /> > </li> > <li> > <label for="password">Password: </label> >- <input type="text" name="password" id="password" size="20" maxlength="90" value="[% account.password %]" /> >+ <input type="text" name="password" id="password" size="20" maxlength="40" value="[% account.password %]" /> > </li> > <li> > <label for="download_directory">Download directory: </label> >- <input type="text" name="download_directory" id="download_directory" size="20" maxlength="90" >- title="The download directory specifies the directory on the ftpsite from which we download quotes and invoices" >- value="[% account.download_directory %]" /> >+ <input type="text" name="download_directory" id="download_directory" size="20" value="[% account.download_directory %]" /> >+ <div class="hint">The download directory specifies the directory on the ftp site from which quotes and invoices are downloaded.</div> > </li> > <li> > <label for="upload_directory">Upload directory: </label> >- <input type="text" name="upload_directory" id="upload_directory" size="20" maxlength="90" >- title="The upload directory specifies the directory on the ftp site to which we upload orders" >- value="[% account.upload_directory %]" /> >+ <input type="text" name="upload_directory" id="upload_directory" size="20" value="[% account.upload_directory %]" /> >+ <div class="hint">The upload directory specifies the directory on the ftp site to which orders are uploaded.</div> > </li> > <li> > <label for="id_code_qualifier">Qualifier:</label> >@@ -152,12 +149,12 @@ > </li> > <li> > <label for="san">SAN: </label> >- <input type="text" name="san" id="san" size="20" maxlength="90" value="[% account.san %]" /> >+ <input type="text" name="san" id="san" size="20" maxlength="20" value="[% account.san %]" /> > </li> > <li> > <label for="quotes_enabled">Quotes enabled: </label> > [% IF account.quotes_enabled %] >- <input type="checkbox" name="quotes_enabled" id="quotes_enabled" value="[% account.quotes_enabled %]" checked /> >+ <input type="checkbox" name="quotes_enabled" id="quotes_enabled" value="[% account.quotes_enabled %]" checked="checked" /> > [% ELSE %] > <input type="checkbox" name="quotes_enabled" id="quotes_enabled" value="[% account.quotes_enabled %]" /> > [% END %] >@@ -165,7 +162,7 @@ > <li> > <label for="orders_enabled">Orders enabled: </label> > [% IF account.orders_enabled %] >- <input type="checkbox" name="orders_enabled" id="orders_enabled" value="[% account.orders_enabled %]" checked /> >+ <input type="checkbox" name="orders_enabled" id="orders_enabled" value="[% account.orders_enabled %]" checked="checked" /> > [% ELSE %] > <input type="checkbox" name="orders_enabled" id="orders_enabled" value="[% account.orders_enabled %]" /> > [% END %] >@@ -173,7 +170,7 @@ > <li> > <label for="invoices_enabled">Invoices enabled: </label> > [% IF account.invoices_enabled %] >- <input type="checkbox" name="invoices_enabled" id="invoices_enabled" value="[% account.invoices_enabled %]" checked /> >+ <input type="checkbox" name="invoices_enabled" id="invoices_enabled" value="[% account.invoices_enabled %]" checked="checked" /> > [% ELSE %] > <input type="checkbox" name="invoices_enabled" id="invoices_enabled" value="[% account.invoices_enabled %]" /> > [% END %] >@@ -181,18 +178,21 @@ > <li> > <label for="responses_enabled">Responses enabled: </label> > [% IF account.responses_enabled %] >- <input type="checkbox" name="responses_enabled" id="responses_enabled" value="[% account.responses_enabled %]" checked /> >+ <input type="checkbox" name="responses_enabled" id="responses_enabled" value="[% account.responses_enabled %]" checked="checked" /> > [% ELSE %] > <input type="checkbox" name="responses_enabled" id="responses_enabled" value="[% account.responses_enabled %]" /> > [% END %] > </li> > <li> >- <label for="auto_orders">Automatic ordering (Quotes generate orders without staff intervention): </label> >+ <label for="auto_orders">Automatic ordering: </label> > [% IF account.auto_orders %] >- <input type="checkbox" name="auto_orders" id="auto_orders" value="[% account.auto_orders %]" checked /> >+ <input type="checkbox" name="auto_orders" id="auto_orders" value="[% account.auto_orders %]" checked="checked" /> > [% ELSE %] > <input type="checkbox" name="auto_orders" id="auto_orders" value="[% account.auto_orders %]" /> > [% END %] >+ <div class="hint"> >+ With automatic ordering quotes generate orders without staff intervention. >+ </div> > </li> > </ol> > </fieldset> >@@ -210,7 +210,7 @@ > <table> > <tr> > <th>Vendor</th> >- <td>[% account.vendor %]</td> >+ <td>[% account.vendor.name %]</td> > </tr> > <tr> > <th>Description</th> >@@ -226,13 +226,15 @@ > </table> > <input type="hidden" name="op" value="delete_confirmed" /> > <input type="hidden" name="id" value="[% account.id %]" /> >- <input type="submit" class="approve" value="Yes, Delete" /> >+ <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete</button> > </form> > <form action="/cgi-bin/koha/admin/edi_accounts.pl" method="get"> >- <input type="submit" class="deny" value="No, do not Delete" /> >+ <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button> > </form> >+</div> > [% END %] > [% IF display %] >+[% IF ( ediaccounts ) %] > <h2>Vendor EDI accounts</h2> > > <table> >@@ -244,8 +246,8 @@ > <th>Remote host</th> > <th>Username</th> > <th>Password</th> >- <th>Download Directory</th> >- <th>Upload Directory</th> >+ <th>Download directory</th> >+ <th>Upload directory</th> > <th>Qualifier</th> > <th>SAN</th> > <th>Quotes</th> >@@ -256,11 +258,9 @@ > <th>Actions</th> > </tr> > [% FOREACH account IN ediaccounts %] >- [% IF loop.even %]<tr> >- [% ELSE %]<tr class="highlight"> >- [% END %] >+ <tr> > <td>[% account.id %]</td> >- <td><a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% account.vendor_id %]">[% account.vendor.name %]</a></td> >+ <td><a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% account.vendor_id %]">[% account.vendor.name %]</a></td> > <td>[% account.description %]</td> > <td>[% account.transport %]</td> > <td>[% account.host %]</td> >@@ -302,12 +302,17 @@ > [% ELSE %] > <td>N</td> > [% END %] >- <td align="center"> >- <a href="/cgi-bin/koha/admin/edi_accounts.pl?op=acct_form&id=[% account.id %]">Edit</a> | <a href="/cgi-bin/koha/admin/edi_accounts.pl?op=delete_confirm&id=[% account.id %]">Delete</a> >+ <td class="actions"> >+ <a class="btn btn-mini" href="/cgi-bin/koha/admin/edi_accounts.pl?op=acct_form&id=[% account.id %]"><i class="fa fa-pencil"></i> Edit</a> <a class="btn btn-mini" href="/cgi-bin/koha/admin/edi_accounts.pl?op=delete_confirm&id=[% account.id %]"><i class="fa fa-trash"></i> Delete</a> > </td> > </tr> > [% END %] > </table> >+ [% ELSE %] >+ <div class="dialog message"> >+ There are no EDI accounts. >+ </div> >+ [% END %] > [% END %] > > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_ean_accounts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_ean_accounts.tt >index 308ebe4..1a07a02 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_ean_accounts.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_ean_accounts.tt >@@ -1,14 +1,14 @@ > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Administration › EDI EANs >+<title>Koha › Administration › Library EANs > [% IF ean_form %] > [% IF ean %] >- ’ Modify library EAN >+ › Modify library EAN > [% ELSE %] >- ’ Add new library EAN >+ › Add new library EAN > [% END %] > [% END %] > [% IF delete_confirm %] >- ’ Confirm deletion of EAN >+ › Confirm deletion of EAN > [% END %] > </title> > [% INCLUDE 'doc-head-close.inc' %] >@@ -20,15 +20,14 @@ > <div id="breadcrumbs"> > <a href="/cgi-bin/koha/mainpage.pl">Home</a> > › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> >- › <a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">EDI EANs</a> > [% IF ean_form %] > [% IF ean %] >- › Modify library EAN >+ › <a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a> › Modify library EAN > [% ELSE %] >- › Add new library EAN >+ › <a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a> › Add new library EAN > [% END %] > [% ELSIF delete_confirm %] >- › Confirm deletion of Ean >+ › <a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a> › Confirm deletion of EAN > [% ELSE %] > › Library EANs > [% END %] >@@ -42,7 +41,7 @@ > [% IF display %] > <div id="toolbar" class="btn-toolbar"> > <a class="btn btn-small" id="newediean" href="/cgi-bin/koha/admin/edi_ean_accounts.pl?op=ean_form"> >- <i class="icon-plus"></i> >+ <i class="fa fa-plus"></i> > New EAN > </a> > </div> >@@ -80,11 +79,11 @@ > </li> > <li> > <label for="description">Description: </label> >- <input type="text" name="description" id="description" size="30" maxlength="64" value="[% ean.description %]" /> >+ <input type="text" name="description" id="description" size="30" maxlength="128" value="[% ean.description %]" /> > </li> > <li> > <label for="ean">EAN: </label> >- <input type="text" name="ean" id="ean" size="20" maxlength="90" value="[% ean.ean %]" /> >+ <input type="text" name="ean" id="ean" size="20" maxlength="15" value="[% ean.ean %]" /> > </li> > <li> > <label for="id_code_qualifier">Qualifier: </label> >@@ -119,15 +118,16 @@ > <input type="hidden" name="op" value="delete_confirmed" /> > <input type="hidden" name="branchcode" value="[% ean.branch.branchcode %]" /> > <input type="hidden" name="ean" value="[% ean.ean %]" /> >- <input type="submit" class="approve" value="Yes, Delete" /> >+ <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete</button> > </form> > <form action="/cgi-bin/koha/admin/edi_ean_accounts.pl" method="get"> >- <input type="submit" class="deny" value="No, do not Delete" /> >+ <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button> > </form> > </div> > [% END %] > > [% IF display %] >+[% IF ( eans ) %] > <h2>Library EANs</h2> > <table> > <tr> >@@ -138,7 +138,7 @@ > <th>Actions</th> > </tr> > [% FOREACH ean IN eans %] >- [% IF loop.even %]<tr>[% ELSE %]<tr class="highlight">[% END %] >+ <tr> > <td>[% ean.branch.branchname %]</td> > <td>[% ean.description %]</td> > <td>[% ean.ean %]</td> >@@ -149,14 +149,18 @@ > [% END %] > [% END %] > </td> >- <td align="center"> >- <a href="/cgi-bin/koha/admin/edi_ean_accounts.pl?op=ean_form&branchcode=[% ean.branch.branchcode %]&ean=[% ean.ean %]">Edit</a> >- | >- <a href="/cgi-bin/koha/admin/edi_ean_accounts.pl?op=delete_confirm&branchcode=[% ean.branch.branchcode %]&ean=[% ean.ean %]">Delete</a> >+ <td class="actions"> >+ <a class="btn btn-mini" href="/cgi-bin/koha/admin/edi_ean_accounts.pl?op=ean_form&branchcode=[% ean.branch.branchcode %]&ean=[% ean.ean %]"><i class="fa fa-pencil"></i> Edit</a> >+ <a class="btn btn-mini" href="/cgi-bin/koha/admin/edi_ean_accounts.pl?op=delete_confirm&branchcode=[% ean.branch.branchcode %]&ean=[% ean.ean %]"><i class="fa fa-trash"></i> Delete</a> > </td> > </tr> > [% END %] > </table> >+[% ELSE %] >+ <div class="dialog message"> >+ There are no library EANs. >+ </div> >+[% END %] > [% END %] > > </div> >-- >1.9.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 16206
:
49924
|
50005
|
50223