Revert "Update shared.make_timestamp.php"
[openemr.git] / templates / x12_partners / general_list.html
blob393934ffb9004de725ce6a23222e6bf4935ea5cf
1 <a href="{$CURRENT_ACTION}action=edit&id=default" {php} if (!$GLOBALS['concurrent_layout']) echo "target='Main'"; {/php} onclick="top.restoreSession()" class="css_button" >
2 <span>{xl t='Add New Partner'}</span></a><br><br>
3 <table cellpadding="1" cellspacing="0" class="showborder">
4 <tr class="showborder_head">
5 <th width="200px">{xl t='Name'}</th>
6 <th width="130px">{xl t='Sender ID'}</th>
7 <th width="130px">{xl t='Receiver ID'}</th>
8 <th>{xl t='Version'}</th>
9 </tr>
10 {foreach from=$partners item=partner}
11 <tr height="22">
12 <td><a href="{$CURRENT_ACTION}action=edit&x12_partner_id={$partner->id}" onclick="top.restoreSession()">{$partner->get_name()}&nbsp;</a></td>
13 <td>{$partner->get_x12_sender_id()}&nbsp;</td>
14 <td>{$partner->get_x12_receiver_id()}&nbsp;</td>
15 <td>{$partner->get_x12_version()}&nbsp;</td>
16 </tr>
17 {foreachelse}
18 <tr height="25" class="center_display">
19 <td colspan="4">{xl t='No Partners Found'}</td>
20 </tr>
21 {/foreach}
22 </table>