Initial commit

This commit is contained in:
2026-01-16 09:26:04 +08:00
parent 00a3d3cdcb
commit f98b896d51
104 changed files with 8425 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
{% extends 'hospital/doctor_base.html' %}
{% load static %}
{% block content %}
{%include 'hospital/doctor_dashboard_cards.html'%}
<br><br><br><br>
<div class="container">
<div class="row">
<div class="panel panel-primary" style="margin-left:15%;">
<div class="panel-heading" style="text-align:center;">
<h6 class="panel-title">Recent Appointments For You</h6>
</div>
<table class="table table-hover" id="dev-table">
<thead>
<tr>
<th>Patient Name</th>
<th>Picture</th>
<th>Description</th>
<th>Mobile</th>
<th>Address</th>
<th>Date</th>
</tr>
</thead>
{% for a,p in appointments %}
<tr>
<td>{{a.patientName}}</td>
<td> <img src="{% static p.profile_pic.url %}" alt="Profile Pic" height="40px" width="40px" /></td>
<td>{{a.description}}</td>
<td>{{p.mobile}}</td>
<td>{{p.address}}</td>
<td>{{a.appointmentDate}}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
<!--
developed By : sumit kumar
facebook : fb.com/sumit.luv
youtube : youtube.com/lazycoders
-->
{% endblock content %}