Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7f19831c
authored
Jul 24, 2013
by
Kálmán Viktor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
network: disabled pagination
parent
f3f433d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
network/views.py
+6
-0
No files found.
network/views.py
View file @
7f19831c
...
...
@@ -19,6 +19,7 @@ class BlacklistList(SingleTableView):
model
=
Blacklist
table_class
=
BlacklistTable
template_name
=
"network/blacklist-list.html"
table_pagination
=
False
class
BlacklistDetail
(
UpdateView
):
...
...
@@ -35,6 +36,7 @@ class DomainList(SingleTableView):
model
=
Domain
table_class
=
DomainTable
template_name
=
"network/domain-list.html"
table_pagination
=
False
class
DomainDetail
(
UpdateView
):
...
...
@@ -51,6 +53,7 @@ class GroupList(SingleTableView):
model
=
Group
table_class
=
GroupTable
template_name
=
"network/group-list.html"
table_pagination
=
False
class
GroupDetail
(
UpdateView
):
...
...
@@ -67,6 +70,7 @@ class HostList(SingleTableView):
model
=
Host
table_class
=
HostTable
template_name
=
"network/host-list.html"
table_pagination
=
False
def
get_context_data
(
self
,
**
kwargs
):
context
=
super
(
HostList
,
self
)
.
get_context_data
(
**
kwargs
)
...
...
@@ -99,6 +103,7 @@ class RecordList(SingleTableView):
model
=
Record
table_class
=
RecordTable
template_name
=
"network/record-list.html"
table_pagination
=
False
class
RecordDetail
(
UpdateView
):
...
...
@@ -121,6 +126,7 @@ class VlanList(SingleTableView):
model
=
Vlan
table_class
=
VlanTable
template_name
=
"network/vlan-list.html"
table_pagination
=
False
class
VlanDetail
(
UpdateView
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment