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

64 lines
1.6 KiB
HTML

{% extends 'hospital/admin_base.html' %}
{% block content %}
<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">Appointment Approvals Required</h6>
</div>
<table class="table table-hover" id="dev-table">
<thead>
<tr>
<th>Doctor Name</th>
<th>Patient Name</th>
<th>Description</th>
<th>Date</th>
<th>Approve</th>
<th>Reject</th>
</tr>
</thead>
{% for a in appointments %}
<tr>
<td> {{a.doctorName}}</td>
<td>{{a.patientName}}</td>
<td>{{a.description}}</td>
<td>{{a.appointmentDate}}</td>
<td><a class="btn btn-primary btn-xs" href="{% url 'approve-appointment' a.id %}"><span class="glyphicon glyphicon-ok"></span></a></td>
<td><a class="btn btn-danger btn-xs" href="{% url 'reject-appointment' a.id %}"><span class="glyphicon glyphicon-trash"></span></a></td>
</tr>
{% endfor %}
</table>
</div>
</div>
<!--
developed By : sumit kumar
facebook : fb.com/sumit.luv
youtube : youtube.com/lazycoders
-->
{% endblock content %}