]> Softwares of Agnibho - librevax.git/commitdiff
Removed personnel name from patient view
authorAgnibho Mondal <mondal@agnibho.com>
Tue, 16 Jan 2024 02:43:27 +0000 (08:13 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Tue, 16 Jan 2024 02:43:27 +0000 (08:13 +0530)
templates/patient-view.html

index ccba911d46d2ad52ed43f9ce10a380ed5a930702..d93e33be61007790808dad1791258b6214ddef08 100644 (file)
@@ -36,9 +36,9 @@ You should have received a copy of the GNU General Public License along with Lib
   </div>
   <hr>
   <table class="table">
-    <tr><th>Vaccine</th><th>Dose</th><th>Route</th><th>Batch</th><th>DOE</th><th>Date</th><th>Consultant</th><th>Vaccinator</th><th></th></tr>
+    <tr><th>Vaccine</th><th>Dose</th><th>Route</th><th>Batch</th><th>DOE</th><th>Date</th><th></th></tr>
     {% for v in vaccination %}
-    <tr><td>{{v["vaccine"]}}</td><td>{{v["dose"]}}{% if v["dosage"]>1 %}&times;{{v["dosage"]}}{% endif %}</td><td>{{v["route"]}}</td><td>{{v["batch"]}}</td><td>{{v["doe"]}}</td><td>{{v["date"]|format_date}}</td><td>{{v["consultant"]}}</td><td>{{v["vaccinator"]}}</td><td><a href="/vaccination/view/{{v["vid"]}}" class="btn btn-sm btn-outline-primary">View</a></td></tr>
+    <tr><td>{{v["vaccine"]}}</td><td>{{v["dose"]}}{% if v["dosage"]>1 %}&times;{{v["dosage"]}}{% endif %}</td><td>{{v["route"]}}</td><td>{{v["batch"]}}</td><td>{{v["doe"]}}</td><td>{{v["date"]|format_date}}</td><td><a href="/vaccination/view/{{v["vid"]}}" class="btn btn-sm btn-outline-primary">View</a></td></tr>
     {% endfor %}
   </table>