Convert LDAP / Active Directory authentication to use native PHP LDAP… (#2746)
[openemr.git] / templates / insurance_companies / general_list.html
blobf65ba89d565c8157a71a7535ced87b39ddb904df
1 <a href="controller.php?practice_settings&{$TOP_ACTION}insurance_company&action=edit" onclick="top.restoreSession()"
2 class="btn btn-default btn-add">
3 {xlt t='Add a Company'}</a>
4 <br><br>
5 <table class="table table-responsive table-striped">
6 <thead>
7 <tr>
8 <th>{xlt t='Name'}</th>
9 <th>{xlt t='City, State'}</th>
10 <th>{xlt t='Default X12 Partner'}</th>
11 <th>{xlt t='Deactivated'}</th>
12 </tr>
13 </thead>
14 <tbody>
15 {foreach from=$icompanies item=insurancecompany}
16 <tr>
17 <td>
18 <a href="{$CURRENT_ACTION}action=edit&id={$insurancecompany->id|attr_url}" onclick="top.restoreSession()">
19 {$insurancecompany->name|text}
20 </a>
21 </td>
22 <td>{$insurancecompany->address->city|text} {$insurancecompany->address->state|upper|text}&nbsp;</td>
23 <td>{$insurancecompany->get_x12_default_partner_name()|text}&nbsp;</td>
24 <td>{if $insurancecompany->get_inactive() eq 1}{xlt t='Yes'}{/if}&nbsp;</td>
25 </tr>
26 {foreachelse}
27 <tr>
28 <td colspan="4">{xlt t='No Insurance Companies Found'}</td>
29 </tr>
30 {/foreach}
31 </tbody>
32 </table>