mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
Remove Due Date and Submitter columns from My Tickets view as these are not necessary
This commit is contained in:
parent
8f71bdac7a
commit
e00e19625a
@ -11,8 +11,6 @@
|
|||||||
<th>Queue</th>
|
<th>Queue</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
<th>Created</th>
|
<th>Created</th>
|
||||||
<th>Due Date</th>
|
|
||||||
<th>Submitter</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -43,8 +41,6 @@ window.addEventListener('load', function()
|
|||||||
<td>${ticket.queue.title}</td>
|
<td>${ticket.queue.title}</td>
|
||||||
<td>${ticket.status}</td>
|
<td>${ticket.status}</td>
|
||||||
<td>${ticket.created}</td>
|
<td>${ticket.created}</td>
|
||||||
<td>${ticket.due_date ? ticket.due_date : 'N/A'}</td>
|
|
||||||
<td>${ticket.submitter}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
`);
|
`);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user