template language translations from Dr. Bosman's group
[openemr.git] / templates / insurance_companies / general_list.html
blob62b8e6bdeae484fc45e742fd045ef21927fe885c
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}">{$insurancecompany->name}</a>&nbsp;</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>