Change support desk contact information (#7561)
[openemr.git] / templates / prescription / general_block.html
blob5ff9d6913dde9cc696baec75fb1d4027f776d531
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 <style>
11 <!--
12 td {
13 font-family: sans-serif;
14 text-decoration: none;
15 color: #000000;
16 font-size: 70%;
18 -->
19 </style>
20 <table>
21 {foreach from=$prescriptions item=prescription}
22 {if $prescription->get_active() > 0}
23 <tr>
24 <td>{$prescription->drug|text}</td>
25 <td>{$prescription->get_dosage_display()|text}</td>
26 </tr>
27 {/if}
28 {/foreach}
29 </table>