Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

basic changes setup #32

Merged
merged 2 commits into from
Aug 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions templates/patient.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,27 @@

{% block body %}
<div id="case-history">
{% for case in cases %}
<div class="container">
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Patient Name</h5>
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Dev Sanghvi</h5>
<p class="card-text">
Case Details
Covid-19
</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
{% endfor %}
</div>
<div id="book-appointment">
<p>Book appointment</p>
<div class="container">
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Dev Sanghvi</h5>
<p class="card-text">
<b>Time Slot:</b> 11:15 A.M.
</p>
</div>
</div>
</div>
</div>
{% endblock body %}
17 changes: 12 additions & 5 deletions templates/pharmacy.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,27 @@

{% block body %}
<div id="medicines">
{% for medicine in medicines %}
<div class="container">
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Medicine Name</h5>
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Calpol</h5>
<p class="card-text">
Medicine Description
It is an analgesic and antipyretic drug that is used to temporarily relieve mild-to-moderate pain and fever. It is commonly included as an ingredient in cold and flu medications and is also used on its own.
</p>
</div>
</div>
</div>
{% endfor %}
</div>
<div id="prescription">
<p>A search bar to search for the patient prescription on name basis</p>
<div class="container">
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Dev Sanghvi</h5>
<p class="card-text">
Prescription: 2 Dolo Paracetamol, 10ml Cough Syrup
</p>
</div>
</div>
</div>
</div>
{% endblock body %}
11 changes: 10 additions & 1 deletion templates/reception.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@

{% block body %}
<div id="new-patient">
<p>New patient</p>
<div class="container">
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Calpol</h5>
<p class="card-text">
It is an analgesic and antipyretic drug that is used to temporarily relieve mild-to-moderate pain and fever. It is commonly included as an ingredient in cold and flu medications and is also used on its own.
</p>
</div>
</div>
</div>
</div>
<div id="existing-patient">
<p>Existing patients</p>
Expand Down