Added the Persian language
[openemr.git] / templates / prescription / general_fragment.html
blobfd8d6e4213970a3f4006826eb47ddb54b75e8170
1 <table>
2 {if empty($prescriptions)}
3 <tr class='text'>
4 <td>&nbsp;&nbsp;{xl t='None'}</td>
5 </tr>
6 {/if}
7 {foreach from=$prescriptions item=prescription}
8 {if $prescription->get_active() > 0}
9 <tr class='text'>
10 <td>{$prescription->drug}</td>
11 <td>{$prescription->get_dosage_display()}</td>
12 </tr>
13 {/if}
14 {/foreach}
15 </table>