Commit 883d6b39 by Kálmán Viktor

network: remove paging info from record table in host detail

parent f5b0e2b6
...@@ -402,7 +402,7 @@ class HostDetail(LoginRequiredMixin, SuperuserRequiredMixin, ...@@ -402,7 +402,7 @@ class HostDetail(LoginRequiredMixin, SuperuserRequiredMixin,
from network.tables import HostRecordsTable from network.tables import HostRecordsTable
context['records_table'] = HostRecordsTable( context['records_table'] = HostRecordsTable(
Record.objects.filter(host=self.get_object()), Record.objects.filter(host=self.get_object()),
request=self.request request=self.request, template="django_tables2/table_no_page.html"
) )
return context return context
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment