You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
697 B
31 lines
697 B
{** |
|
* Prescription General Block |
|
* |
|
* @package OpenEMR |
|
* @link http://www.open-emr.org |
|
* @author Brady Miller <brady.g.miller@gmail.com> |
|
* @copyright Copyright (c) 2017 Brady Miller <brady.g.miller@gmail.com> |
|
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 |
|
*} |
|
{literal} |
|
<style> |
|
<!-- |
|
td { |
|
font-family: sans-serif; |
|
text-decoration: none; |
|
color: #000000; |
|
font-size: 70%; |
|
} |
|
--> |
|
{/literal} |
|
</style> |
|
<table> |
|
{foreach from=$prescriptions item=prescription} |
|
{if $prescription->get_active() > 0} |
|
<tr> |
|
<td>{$prescription->drug|text}</td> |
|
<td>{$prescription->get_dosage_display()|text}</td> |
|
</tr> |
|
{/if} |
|
{/foreach} |
|
</table>
|
|
|