bug fix march continued (#1921)
[openemr.git] / templates / insurance_numbers / general_list.html
blob4d849611cd3034efdd6bc5cf63df91eb36f475ad
1 <table class="table table-responsive table-striped">
2 <thead>
3 <tr>
4 <th>{xl t='Name'|escape:'html'}</th>
5 <th>&nbsp;</th>
6 <th>{xl t='Provider'|escape:'html'} #</th>
7 <th>{xl t='Rendering'|escape:'html'} #</th>
8 <th>{xl t='Group'|escape:'html'} #</th>
9 </tr>
10 </thead>
11 <tbody>
12 {foreach from=$providers item=provider}
13 <tr>
14 <td>
15 <a href="{$CURRENT_ACTION}action=edit&id=default&provider_id={$provider->id|escape:'html'}" onclick="top.restoreSession()">
16 {$provider->get_name_display()|escape:'html'}
17 </a>
18 </td>
19 <td>{xl t='Default'|escape:'html'}&nbsp;</td>
20 <td>{$provider->get_provider_number_default()|escape:'html'}&nbsp;</td>
21 <td>{$provider->get_rendering_provider_number_default()|escape:'html'}&nbsp;</td>
22 <td>{$provider->get_group_number_default()|escape:'html'}&nbsp;</td>
23 </tr>
24 {foreachelse}
25 <tr>
26 <td>{xl t='No Providers Found'|escape:'html'}</td>
27 </tr>
28 {/foreach}
29 </tbody>
30 </table>