Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gyuricska Milán
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
b6b57fa4
authored
6 years ago
by
Chif Gergő
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix flake8 warning, rename function
parent
4fc8b149
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
circle/dashboard/views/node.py
+4
-3
No files found.
circle/dashboard/views/node.py
View file @
b6b57fa4
...
@@ -193,6 +193,7 @@ class NodeList(LoginRequiredMixin, GraphMixin, SingleTableView):
...
@@ -193,6 +193,7 @@ class NodeList(LoginRequiredMixin, GraphMixin, SingleTableView):
def
get
(
self
,
*
args
,
**
kwargs
):
def
get
(
self
,
*
args
,
**
kwargs
):
if
not
self
.
request
.
user
.
has_perm
(
'vm.view_statistics'
):
if
not
self
.
request
.
user
.
has_perm
(
'vm.view_statistics'
):
raise
PermissionDenied
()
raise
PermissionDenied
()
self
.
wrong_nodes_message
()
if
self
.
request
.
is_ajax
():
if
self
.
request
.
is_ajax
():
nodes
=
Node
.
objects
.
all
()
nodes
=
Node
.
objects
.
all
()
nodes
=
[{
nodes
=
[{
...
@@ -210,14 +211,14 @@ class NodeList(LoginRequiredMixin, GraphMixin, SingleTableView):
...
@@ -210,14 +211,14 @@ class NodeList(LoginRequiredMixin, GraphMixin, SingleTableView):
return
super
(
NodeList
,
self
)
.
get
(
*
args
,
**
kwargs
)
return
super
(
NodeList
,
self
)
.
get
(
*
args
,
**
kwargs
)
def
get_queryset
(
self
):
def
get_queryset
(
self
):
self
.
wrong_node_message
()
return
Node
.
objects
.
annotate
(
return
Node
.
objects
.
annotate
(
number_of_VMs
=
Count
(
'instance_set'
))
.
select_related
(
'host'
)
number_of_VMs
=
Count
(
'instance_set'
))
.
select_related
(
'host'
)
def
wrong_node_message
(
self
):
def
wrong_node
s
_message
(
self
):
for
node
in
Node
.
objects
.
all
():
for
node
in
Node
.
objects
.
all
():
if
node
.
monitor_info
is
None
:
if
node
.
monitor_info
is
None
:
messages
.
error
(
self
.
request
,
"Can't reach "
+
node
.
name
+
" monitor info"
)
messages
.
error
(
self
.
request
,
"Can't reach "
+
node
.
name
+
" monitor info"
)
class
NodeCreate
(
LoginRequiredMixin
,
SuperuserRequiredMixin
,
TemplateView
):
class
NodeCreate
(
LoginRequiredMixin
,
SuperuserRequiredMixin
,
TemplateView
):
...
...
This diff is collapsed.
Click to expand it.
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