]> Softwares of Agnibho - librevax.git/commitdiff
Bugfix: note
authorAgnibho Mondal <mondal@agnibho.com>
Thu, 14 Mar 2024 14:11:56 +0000 (19:41 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Thu, 14 Mar 2024 14:11:56 +0000 (19:41 +0530)
templates/admin.html
templates/note.html
templates/patient-view.html

index b96b4067ec5de21220a44f41a16d43001783afa8..4f4e8987e7aabdb1b6807490eb58ce13afe75459 100644 (file)
@@ -12,7 +12,6 @@ You should have received a copy of the GNU General Public License along with Lib
 
 {% block content %}
 <div class="content">
-  {{auth.ALL}}
   {% if msg %}
   <div class="alert alert-info">
     <p>{{msg}}</p>
index c1c847a3095f8f79584a1ba9bb5992f010f2d4b8..98acc4d989d6bed0d011e253dfc4a38ea686207e 100644 (file)
@@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Lib
 <div class="content">
   <form method="post">
     <label class="form-label col-sm-3">Short Note</label>
-    <input name="short" placeholder="Short Note" class="form-control" value={{data["short"]}}>
+    <input name="short" placeholder="Short Note" class="form-control" value="{{data["short"]}}">
     <label class="form-label col-sm-3">Detailed Note</label>
     <textarea name="note" placeholder="Detailed Note" class="form-control">{{data["note"]}}</textarea>
     <label class="form-label col-sm-3">Next Date</label>
index d93e33be61007790808dad1791258b6214ddef08..ca750417e490bb7fa8614d870110424407cf56c0 100644 (file)
@@ -52,7 +52,7 @@ You should have received a copy of the GNU General Public License along with Lib
   {% if data["note"] %}
   <div>
     <h4>Note:</h4>
-    <p>{{data["note"]}}</p>
+    <pre>{{data["note"]}}</pre>
   </div>
   {% endif %}