You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.8 KiB
42 lines
1.8 KiB
<a href="{$CURRENT_ACTION}action=edit" onclick="top.restoreSession()" |
|
class="btn btn-secondary btn-add"> |
|
{xlt t='Add a Company'}</a> |
|
<br /><br /> |
|
<div class="table-responsive"> |
|
<table class="table table-striped"> |
|
<thead> |
|
<tr> |
|
<th>{xlt t='Name'}</th> |
|
<th>{xlt t='Address'}</th> |
|
<th>{xlt t='City, State, ZIP'}</th> |
|
<th>{xlt t='Phone'}</th> |
|
<th>{xlt t='Fax'}</th> |
|
<th>{xlt t='Payer ID'}</th> |
|
<th>{xlt t='Default X12 Partner'}</th> |
|
<th>{xlt t='Deactivated'}</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{foreach from=$icompanies item=insurancecompany} |
|
<tr> |
|
<td> |
|
<a href="{$CURRENT_ACTION}action=edit&id={$insurancecompany->id|attr_url}" onclick="top.restoreSession()"> |
|
{$insurancecompany->name|text} |
|
</a> |
|
</td> |
|
<td>{$insurancecompany->address->line1|text} {$insurancecompany->address->line2|text} </td> |
|
<td>{$insurancecompany->address->city|text} {$insurancecompany->address->state|upper|text} {$insurancecompany->address->zip|text} </td> |
|
<td>{$insurancecompany->get_phone()|text} </td> |
|
<td>{$insurancecompany->get_fax()|text} </td> |
|
<td>{$insurancecompany->cms_id|text} </td> |
|
<td>{$insurancecompany->get_x12_default_partner_name()|text} </td> |
|
<td>{if $insurancecompany->get_inactive() eq 1}{xlt t='Yes'}{/if} </td> |
|
</tr> |
|
{foreachelse} |
|
<tr> |
|
<td colspan="8">{xlt t='No Insurance Companies Found'}</td> |
|
</tr> |
|
{/foreach} |
|
</tbody> |
|
</table> |
|
</div>
|
|
|