Fixed hardcoded webroot.
[openemr.git] / templates / insurance_companies / general_list.html
blobe6663ccefb96c05a31419ad79d747a4decf4f5e4
1 <table>
2 <tr>
3 <td><b>{xl t='Name'}</b></td>
4 <td><b>{xl t='City, State'}</b></td>
5 <td><b>{xl t='Default X12 Partner'}</b></td>
6 </tr>
7 {foreach from=$icompanies item=insurancecompany}
8 <tr>
9 <td><a href="{$CURRENT_ACTION}action=edit&id={$insurancecompany->id}" onsubmit="return top.restoreSession()">{$insurancecompany->name}&nbsp;</a></td>
10 <td>{$insurancecompany->address->city} {$insurancecompany->address->state|upper}&nbsp;</td>
11 <td>{$insurancecompany->get_x12_default_partner_name()}</td>
12 </tr>
13 {foreachelse}
14 <tr>
15 <td colspan="3">{xl t='No Insurance Companies Found'}</td>
16 </tr>
17 {/foreach}
18 </table>