Vijayakrishnan пре 4 година
родитељ
комит
bcd1e7da9a
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      resources/views/app/patient/canvas-sections/cc_hpi/summary.php

+ 2 - 2
resources/views/app/patient/canvas-sections/cc_hpi/summary.php

@@ -44,7 +44,7 @@ else {
         <?php foreach($lines as $i => $line): ?>
         <tr class="bg-white">
             <td class="bg-white px-2 py-1 text-center text-sm font-weight-bold"><?= ++$i ?></td>
-            <td class="bg-white px-2 py-1"><?= $line['category'] ?></td>
+            <td class="bg-white px-2 py-1"><?= ucwords($line['category']) ?></td>
             <td class="bg-white px-2 py-1"><?= $line['name'] ?></td>
             <td class="bg-white px-2 py-1"><?= $line['icd'] ?></td>
             <td class="bg-white px-2 py-1"><?= $line['memo'] ?></td>
@@ -65,7 +65,7 @@ else {
         <?php foreach($lines as $i => $line): ?>
             <tr>
                 <td class="px-2 bg-white py-1 text-center text-sm font-weight-bold"><?= ++$i ?></td>
-                <td class="px-2 bg-white py-1"><?= $line['category'] ?><?= $line['name'] ? ' / ' . $line['name'] : '' ?><?= $line['category'] ? ' / ' . $line['category'] : ''?></td>
+                <td class="px-2 bg-white py-1"><?= ucwords($line['category']) ?><?= $line['name'] ? ' <span class="text-secondary on-hover-opaque">/</span> ' . $line['name'] : '' ?><?= $line['icd'] ? ' <span class="text-secondary on-hover-opaque">/</span> ' . $line['icd'] : ''?></td>
                 <td class="px-2 bg-white py-1"><?= $line['hpi']['free_text'] ?></td>
             </tr>
         <?php endforeach; ?>