mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
Merge branch 'main' into webhooks-2
This commit is contained in:
commit
c959c24b96
@ -11,8 +11,6 @@
|
||||
<th>Queue</th>
|
||||
<th>Status</th>
|
||||
<th>Created</th>
|
||||
<th>Due Date</th>
|
||||
<th>Submitter</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -43,8 +41,6 @@ window.addEventListener('load', function()
|
||||
<td>${ticket.queue.title}</td>
|
||||
<td>${ticket.status}</td>
|
||||
<td>${ticket.created}</td>
|
||||
<td>${ticket.due_date ? ticket.due_date : 'N/A'}</td>
|
||||
<td>${ticket.submitter}</td>
|
||||
</tr>
|
||||
`);
|
||||
});
|
||||
|
@ -40,6 +40,12 @@
|
||||
<span>{% trans "New Ticket" %}</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item{% if 'my-tickets' in request.path %} active{% endif %}">
|
||||
<a class="nav-link" href="{% url 'helpdesk:my-tickets' %}">
|
||||
<i class="fas fa-fw fa-tasks"></i>
|
||||
<span>{% trans "My Tickets" %}</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item{% if 'reports' in request.path %} active{% endif %}">
|
||||
<a class="nav-link" href="{% url 'helpdesk:report_index' %}">
|
||||
<i class="fas fa-fw fa-chart-area"></i>
|
||||
|
Loading…
Reference in New Issue
Block a user