From 00ab38ba18b59d93e931d0e90475073d86e7706a 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" Signed-off-by: Katrin Fischer --- .../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 bba7bcb89e..fce2cc7ffe 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 %] -
    - [% 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 %] -
-
+

[% 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.30.2