minor update

This commit is contained in:
2025-08-26 12:53:52 +05:30
parent edb1ab6b3a
commit 15e8344d0e
4 changed files with 47 additions and 27 deletions
@@ -6,7 +6,7 @@
<div class="card-header bg-primary text-white">
<h3>Department Dashboard</h3>
<p>
Welcome, {{ request.user.username }}. Your Departments:
Welcome, {{ request.user.username }}. Department:
{% for dept in departments %}
<span class="badge bg-light text-dark">{{ dept.name }}</span>
{% empty %}
@@ -21,7 +21,6 @@
<tr>
<th>#</th>
<th>Title</th>
<th>Category</th>
<th>Reported By</th>
<th>Status</th>
<th>Created At</th>
@@ -33,7 +32,6 @@
<tr>
<td>{{ forloop.counter }}</td>
<td>{{ issue.title }}</td>
<td>{{ issue.category.name|default:"—" }}</td>
<td>{{ issue.reporter.username }}</td>
<td>
{% if issue.status == "reported" %}