Bug 33104: Remove fieldset

For consistency with "Contacts"

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Jonathan Druart 2023-04-11 12:23:32 +02:00 committed by Tomas Cohen Arazi
parent e92985359b
commit e6369764c7
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -358,29 +358,25 @@
<h2>Interfaces</h2>
[% FOR i IN vendor.interfaces %]
<fieldset class="rows">
<legend>[% i.name | html %]</legend>
<ul>
<h3>[% i.name | html %]</h3>
[% IF i.type %]
<li>Type: [% AuthorisedValues.GetByCode( 'VENDOR_INTERFACE_TYPE', i.type) | html %]</li>
<p><span>Type: [% AuthorisedValues.GetByCode( 'VENDOR_INTERFACE_TYPE', i.type) | html %]</span></p>
[% END %]
[% IF i.uri %]
<li>URI: [% i.uri | html %]</li>
<p><span>URI: [% i.uri | html %]</span></p>
[% END %]
[% IF i.login %]
<li>Login: [% i.login | html %]</li>
<p><span>Login: [% i.login | html %]</span></p>
[% END %]
[% IF i.password %]
<li>Password: <span class="password"><a href="#" class="show_password" data-plain-text-password="[% i.plain_text_password | html %]">Show</a></span></li>
<p><span>Password: <span class="password"><a href="#" class="show_password" data-plain-text-password="[% i.plain_text_password | html %]">Show</a></span></span></p>
[% END %]
[% IF i.account_email %]
<li>Account email: [% i.account_email | html %]</li>
<p><span>Account email: [% i.account_email | html %]</span></p>
[% END %]
[% IF i.notes %]
<li>Notes : [% i.notes | html %]</li>
<p><span>Notes : [% i.notes | html %]</span></p>
[% END %]
</ul>
</fieldset>
[% END %]
</div>
[% END %]