dump db version
[openemr.git] / templates / prescription / general_block.html
blobdeedd83ef50f134487d166200fcf1696674cb8bc
1 {**
2 * Prescription General Block
4 * @package OpenEMR
5 * @link http://www.open-emr.org
6 * @author Brady Miller <brady.g.miller@gmail.com>
7 * @copyright Copyright (c) 2017 Brady Miller <brady.g.miller@gmail.com>
8 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
9 *}
10 {literal}
11 <style type="text/css" title="mystyles" media="all">
12 <!--
13 td {
14 font-family: sans-serif;
15 text-decoration: none;
16 color: #000000;
17 font-size: 70%;
19 -->
20 {/literal}
21 </style>
22 <table>
23 {foreach from=$prescriptions item=prescription}
24 {if $prescription->get_active() > 0}
25 <tr>
26 <td>{$prescription->drug|escape:'html'}</td>
27 <td>{$prescription->get_dosage_display()|escape:'html'}</td>
28 </tr>
29 {/if}
30 {/foreach}
31 </table>