forked from AyeshaNagdawala/HealthBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drdetailsdisplay.html
72 lines (52 loc) · 2.38 KB
/
drdetailsdisplay.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link href="static/displaydoctordetails.css" rel="stylesheet">
<title>DOCTOR'S DETAILS</title>
</head>
<body>
<nav>
<div class="container flex main-nav">
<a href="#" class="company-logo img"><img src="static/logo final.png" alt="company-logo"></a>
<div class="nav-links">
<ul class="flex">
<li><a href="/"class="hover-link">Homepage </a></li>
<li><a href="/drdashboard" class="hover-link">Dashboard </a></li>
<!-- <li><a href="/aboutus"class="hover-link">About Us <i class="fa-sharp fa-solid fa-angle-down"></i></a></li> -->
<li><a href="/logout"class="hover-link secondary-button">Log Out</a></li>
</ul>
</div>
</div>
</nav>
<div class="section">
<div class="header">
<h2>DOCTOR'S DETAILS</h2>
</div>
<div class="nn">
{% for i in list %}
Name : {{i.name}}
<br>
Age : {{i.age}}
<br>
Speciality : {{i.speciality}}
<br>
Registeration No : {{i.regno}}
<br>
ID Link : {{i.idlink}}
<br>
Speciality : {{i.speciality}}
<br>
Gender : {{i.gender}}
<br>
Contact Number : {{i.contact}}
<!--
<td> <a href="patient_details?id={{i.id}}" >View Prescription</a></td>
<td> <a href="patient_report?id={{i.id}}" >View Report</a></td>
-->
{% endfor %}
</div>
</div>
</div>
</body>
</html>