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
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
c6cbc766
authored
Sep 09, 2013
by
Kálmán Viktor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
network: host list with less SQL queries
parent
328afa24
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
circle/network/views.py
+2
-3
No files found.
circle/network/views.py
View file @
c6cbc766
...
@@ -276,10 +276,9 @@ class HostList(SingleTableView):
...
@@ -276,10 +276,9 @@ class HostList(SingleTableView):
def
get_table_data
(
self
):
def
get_table_data
(
self
):
vlan_id
=
self
.
request
.
GET
.
get
(
'vlan'
)
vlan_id
=
self
.
request
.
GET
.
get
(
'vlan'
)
if
vlan_id
:
if
vlan_id
:
data
=
Host
.
objects
.
filter
(
vlan
=
vlan_id
)
.
all
()
data
=
Host
.
objects
.
filter
(
vlan
=
vlan_id
)
.
select_related
()
else
:
else
:
data
=
Host
.
objects
.
all
()
data
=
Host
.
objects
.
select_related
()
return
data
return
data
...
...
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