Using VMDetail model to show order details
This commit is contained in:
parent
f2213305f6
commit
7fcece40c1
1 changed files with 23 additions and 19 deletions
|
@ -679,6 +679,10 @@ class OrdersHostingDetailView(LoginRequiredMixin,
|
|||
|
||||
if obj is not None:
|
||||
# invoice for previous order
|
||||
try:
|
||||
vm_detail = VMDetail.objects.get(vm_id=obj.vm_id)
|
||||
context['vm'] = vm_detail.__dict__
|
||||
except VMDetail.DoesNotExist:
|
||||
try:
|
||||
manager = OpenNebulaManager(
|
||||
email=owner.email, password=owner.password
|
||||
|
|
Loading…
Reference in a new issue