Removed comment as suggested by Brady
[openemr.git] / templates / insurance_numbers / general_list.html
blob41c60dc55c5307813d0d851c7ae7bc5b66bca4e2
1 <table cellpadding="1" cellspacing="0" class="showborder">
2 <tr class="showborder_head">
3 <th width="130px">{xl t='Name'}</th>
4 <th width="80px">&nbsp;</th>
5 <th width="100px">{xl t='Provider'} #</th>
6 <th width="100px">{xl t='Rendering'} #</th>
7 <th width="100px">{xl t='Group'} #</th>
8 </tr>
9 {foreach from=$providers item=provider}
10 <tr height="22">
11 <td><a href="{$CURRENT_ACTION}action=edit&id=default&provider_id={$provider->id}">{$provider->get_name_display()}</a></td>
12 <td>{xl t='Default'}&nbsp;</td>
13 <td>{$provider->get_provider_number_default()}&nbsp;</td>
14 <td>{$provider->get_rendering_provider_number_default()}&nbsp;</td>
15 <td>{$provider->get_group_number_default()}&nbsp;</td>
16 </tr>
17 {foreachelse}
18 <tr class="center_display">
19 <td colspan="5">{xl t='No Providers Found'}</td>
20 </tr>
21 {/foreach}
22 </table>