mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-21 02:58:43 -06:00
Fixes #16756: Fix table pagination for custom script results
This commit is contained in:
@@ -1258,6 +1258,9 @@ class ScriptResultView(TableMixin, generic.ObjectView):
|
||||
|
||||
# If this is an HTMX request, return only the result HTML
|
||||
if htmx_partial(request):
|
||||
if request.GET.get('log'):
|
||||
# If log=True, render only the log table
|
||||
return render(request, 'htmx/table.html', context)
|
||||
response = render(request, 'extras/htmx/script_result.html', context)
|
||||
if job.completed or not job.started:
|
||||
response.status_code = 286
|
||||
|
||||
Reference in New Issue
Block a user