rework zip archive for QRDA CATI Testing Record Sample (#5301)
[openemr.git] / templates / insurance_companies / general_list.html
blob60851fe488d1b1ef58642c7f8863f607e18a4a63
1 <a href="{$CURRENT_ACTION}action=edit" onclick="top.restoreSession()"
2 class="btn btn-secondary btn-add">
3 {xlt t='Add a Company'}</a>
4 <br /><br />
5 <div class="table-responsive">
6 <table class="table table-striped">
7 <thead>
8 <tr>
9 <th>{xlt t='Name'}</th>
10 <th>{xlt t='Address'}</th>
11 <th>{xlt t='City, State, ZIP'}</th>
12 <th>{xlt t='Phone'}</th>
13 <th>{xlt t='Fax'}</th>
14 <th>{xlt t='Payer ID'}</th>
15 <th>{xlt t='Default X12 Partner'}</th>
16 <th>{xlt t='Deactivated'}</th>
17 </tr>
18 </thead>
19 <tbody>
20 {foreach from=$icompanies item=insurancecompany}
21 <tr>
22 <td>
23 <a href="{$CURRENT_ACTION}action=edit&id={$insurancecompany->id|attr_url}" onclick="top.restoreSession()">
24 {$insurancecompany->name|text}
25 </a>
26 </td>
27 <td>{$insurancecompany->address->line1|text} {$insurancecompany->address->line2|text}&nbsp;</td>
28 <td>{$insurancecompany->address->city|text} {$insurancecompany->address->state|upper|text} {$insurancecompany->address->zip|text}&nbsp;</td>
29 <td>{$insurancecompany->get_phone()|text}&nbsp;</td>
30 <td>{$insurancecompany->get_fax()|text}&nbsp;</td>
31 <td>{$insurancecompany->cms_id|text}&nbsp;</td>
32 <td>{$insurancecompany->get_x12_default_partner_name()|text}&nbsp;</td>
33 <td>{if $insurancecompany->get_inactive() eq 1}{xlt t='Yes'}{/if}&nbsp;</td>
34 </tr>
35 {foreachelse}
36 <tr>
37 <td colspan="8">{xlt t='No Insurance Companies Found'}</td>
38 </tr>
39 {/foreach}
40 </tbody>
41 </table>
42 </div>