make sure form drop down menu always on top of any reports (#7901)
[openemr.git] / templates / insurance_numbers / general_list.html
blob656f1002d9ecb5ef20acc469968c32607c8fceff
1 <div class="table-responsive">
2 <table class="table table-striped">
3 <thead>
4 <tr>
5 <th>{xlt t='Name'}</th>
6 <th>&nbsp;</th>
7 <th>{xlt t='Provider'} #</th>
8 <th>{xlt t='Rendering'} #</th>
9 <th>{xlt t='Group'} #</th>
10 </tr>
11 </thead>
12 <tbody>
13 {foreach from=$providers item=provider}
14 <tr>
15 <td>
16 <a href="{$CURRENT_ACTION}action=edit&id=default&provider_id={$provider->id|attr_url}" onclick="top.restoreSession()">
17 {$provider->get_name_display()|text}
18 </a>
19 </td>
20 <td>{xlt t='Default'}&nbsp;</td>
21 <td>{$provider->get_provider_number_default()|text}&nbsp;</td>
22 <td>{$provider->get_rendering_provider_number_default()|text}&nbsp;</td>
23 <td>{$provider->get_group_number_default()|text}&nbsp;</td>
24 </tr>
25 {foreachelse}
26 <tr>
27 <td>{xlt t='No Providers Found'}</td>
28 </tr>
29 {/foreach}
30 </tbody>
31 </table>
32 </div>