71 lines
1.3 KiB
HTML
71 lines
1.3 KiB
HTML
{% block content %}
|
|
<style>
|
|
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.table th, .table td {
|
|
padding: 8px;
|
|
border: 1px solid #ddd; /* Add thin borders for separation */
|
|
text-align: left;
|
|
}
|
|
|
|
.table th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.title-1 {
|
|
font-size: 24px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.text-danger {
|
|
color: red;
|
|
}
|
|
|
|
a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
</style>
|
|
|
|
<p class="title-1">Lecturers</p>
|
|
|
|
<div>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>ID No.</th>
|
|
<th>Full Name</th>
|
|
<th>Email</th>
|
|
<th>Mob No.</th>
|
|
<th>Address/City</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for lecturer in lecturers %}
|
|
<tr>
|
|
<td> {{ forloop.counter }}.</td>
|
|
<td>{{ lecturer.username }}</td>
|
|
<td><a href="{% url 'profile_single' lecturer.id %}">{{ lecturer.get_full_name }}</a></td>
|
|
<td>{{ lecturer.email }}</td>
|
|
<td>{{ lecturer.phone }}</td>
|
|
<td>{{ lecturer.address }}</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td>
|
|
<span class="text-danger">
|
|
No Lecturer(s).
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock content %}
|