From e23955b2cc0102696ea1aeb02eeb50bfcd807cd9 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 11 Apr 2023 12:23:32 +0200 Subject: [PATCH] Bug 33104: Remove fieldset For consistency with "Contacts" --- .../prog/en/modules/acqui/supplier.tt | 42 +++++++++---------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt index bba7bcb89e8..fce2cc7ffe8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt @@ -369,29 +369,25 @@

Interfaces

[% FOR i IN vendor.interfaces %] -
- [% i.name | html %] - -
+

[% i.name | html %]

+ [% IF i.type %] +

Type: [% AuthorisedValues.GetByCode( 'VENDOR_INTERFACE_TYPE', i.type) | html %]

+ [% END %] + [% IF i.uri %] +

URI: [% i.uri | html %]

+ [% END %] + [% IF i.login %] +

Login: [% i.login | html %]

+ [% END %] + [% IF i.password %] +

Password: Show

+ [% END %] + [% IF i.account_email %] +

Account email: [% i.account_email | html %]

+ [% END %] + [% IF i.notes %] +

Notes : [% i.notes | html %]

+ [% END %] [% END %] [% END %] -- 2.25.1