Files
Hospital-Management/hospitalmanagement/templates/hospital/doctor_view_discharge_patient.html
2026-01-16 09:26:04 +08:00

66 lines
1.4 KiB
HTML

{% extends 'hospital/doctor_base.html' %}
{% block content %}
{%load static%}
<head>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<style media="screen">
a:link {
text-decoration: none;
}
h6 {
text-align: center;
}
.row {
margin: 100px;
}
</style>
</head>
<!--
written By : sumit kumar
facebook : fb.com/sumit.luv
-->
<div class="container">
<div class="panel panel-primary">
<div class="panel-heading">
<h6 class="panel-title">Your Discharged Patient List</h6>
</div>
<table class="table table-hover" id="dev-table">
<thead>
<tr>
<th>Name</th>
<th>Admit Date</th>
<th>Release Date</th>
<th>Symptoms</th>
<th>Mobile</th>
<th>Address</th>
</tr>
</thead>
{% for p in dischargedpatients %}
<tr>
<td> {{p.patientName}}</td>
<td>{{p.admitDate}}</td>
<td>{{p.releaseDate}}</td>
<td>{{p.symptoms}}</td>
<td>{{p.mobile}}</td>
<td>{{p.address}}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
<!--
developed By : sumit kumar
facebook : fb.com/sumit.luv
youtube : youtube.com/lazycoders
-->
{% endblock content %}