View | Details | Raw Unified | Return to bug 33104
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-24 / +19 lines)
Lines 369-397 Link Here
369
                    <h2>Interfaces</h2>
369
                    <h2>Interfaces</h2>
370
370
371
                    [% FOR i IN vendor.interfaces %]
371
                    [% FOR i IN vendor.interfaces %]
372
                        <fieldset class="rows">
372
                        <h3>[% i.name | html %]</h3>
373
                            <legend>[% i.name | html %]</legend>
373
                        [% IF i.type %]
374
                            <ul>
374
                            <p><span>Type: [% AuthorisedValues.GetByCode( 'VENDOR_INTERFACE_TYPE', i.type) | html %]</span></p>
375
                                [% IF i.type %]
375
                        [% END %]
376
                                    <li>Type: [% AuthorisedValues.GetByCode( 'VENDOR_INTERFACE_TYPE', i.type) | html %]</li>
376
                        [% IF i.uri %]
377
                                [% END %]
377
                            <p><span>URI: [% i.uri | html %]</span></p>
378
                                [% IF i.uri %]
378
                        [% END %]
379
                                    <li>URI: [% i.uri | html %]</li>
379
                        [% IF i.login %]
380
                                [% END %]
380
                            <p><span>Login: [% i.login | html %]</span></p>
381
                                [% IF i.login %]
381
                        [% END %]
382
                                    <li>Login: [% i.login | html %]</li>
382
                        [% IF i.password %]
383
                                [% END %]
383
                            <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>
384
                                [% IF i.password %]
384
                        [% END %]
385
                                    <li>Password: <span class="password"><a href="#" class="show_password" data-plain-text-password="[% i.plain_text_password | html %]">Show</a></span></li>
385
                        [% IF i.account_email %]
386
                                [% END %]
386
                            <p><span>Account email: [% i.account_email | html %]</span></p>
387
                                [% IF i.account_email %]
387
                        [% END %]
388
                                    <li>Account email: [% i.account_email | html %]</li>
388
                        [% IF i.notes %]
389
                                [% END %]
389
                            <p><span>Notes : [% i.notes | html %]</span></p>
390
                                [% IF i.notes %]
390
                        [% END %]
391
                                    <li>Notes : [% i.notes | html %]</li>
392
                                [% END %]
393
                            </ul>
394
                        </fieldset>
395
                    [% END %]
391
                    [% END %]
396
                </div>
392
                </div>
397
                [% END %]
393
                [% END %]
398
- 

Return to bug 33104