Jun 24 - Add reporter column in Issues list page

This commit is contained in:
2026-06-24 12:01:15 -04:00
parent 9b3cd7a2d9
commit af321ede01
+6
View File
@@ -100,6 +100,7 @@
<th>Description</th> <th>Description</th>
<th>Status</th> <th>Status</th>
<th>SLA</th> <th>SLA</th>
<th>Reporter</th>
<th>Assigned</th> <th>Assigned</th>
<th></th> <th></th>
</tr> </tr>
@@ -142,6 +143,11 @@
<span class="text-muted small"></span> <span class="text-muted small"></span>
{% endif %} {% endif %}
</td> </td>
<td>
{% if issue.reporter %}
<small>{{ issue.reporter.display_name }}</small>
{% else %}<span class="text-muted"></span>{% endif %}
</td>
<td> <td>
{% if current_user.role in ['admin', 'director'] and issue.status != 'resolved' %} {% if current_user.role in ['admin', 'director'] and issue.status != 'resolved' %}
<div class="d-flex align-items-center gap-1 quick-assign-wrap" data-issue-id="{{ issue.id }}"> <div class="d-flex align-items-center gap-1 quick-assign-wrap" data-issue-id="{{ issue.id }}">