Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
bfb09f0f
authored
Feb 25, 2013
by
Dányi Bence
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webui: show personal quota on vm details page
fixes #70
parent
91f6d6df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
one/views.py
+6
-0
No files found.
one/views.py
View file @
bfb09f0f
...
...
@@ -289,6 +289,11 @@ def vm_show(request, iid):
ports
=
inst
.
firewall_host
.
list_ports
()
except
:
ports
=
None
try
:
details
=
UserCloudDetails
.
objects
.
get
(
user
=
request
.
user
)
except
UserCloudDetails
.
DoesNotExist
:
details
=
UserCloudDetails
(
user
=
request
.
user
)
details
.
save
()
return
render_to_response
(
"show.html"
,
RequestContext
(
request
,{
'uri'
:
inst
.
get_connect_uri
(),
'state'
:
inst
.
state
,
...
...
@@ -299,6 +304,7 @@ def vm_show(request, iid):
'i'
:
inst
,
'booting'
:
not
inst
.
active_since
,
'ports'
:
ports
,
'userdetails'
:
details
}))
@require_safe
...
...
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