From: Agnibho Mondal <mondal@agnibho.com> Date: Tue, 16 Jan 2024 02:43:27 +0000 (+0530) Subject: Removed personnel name from patient view X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=f7af3d2da820a9089e0b892fa8fb0ab77a725b21;p=librevax.git Removed personnel name from patient view --- diff --git a/templates/patient-view.html b/templates/patient-view.html index ccba911..d93e33b 100644 --- a/templates/patient-view.html +++ b/templates/patient-view.html @@ -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 %}×{{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 %}×{{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>