1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Resoved problem with app template

This commit is contained in:
Retspen 2015-04-02 16:20:46 +03:00
parent 35da9ad193
commit b4e8da8671
42 changed files with 37 additions and 32 deletions

View file

@ -54,7 +54,7 @@ def interfaces(request, compute_id):
except libvirtError as lib_err:
error_messages.append(lib_err)
return render(request, 'interfaces/interfaces.html', locals())
return render(request, 'interfaces.html', locals())
def interface(request, compute_id, iface):
@ -103,4 +103,4 @@ def interface(request, compute_id, iface):
except libvirtError as lib_err:
error_messages.append(lib_err)
return render(request, 'interfaces/interface.html', locals())
return render(request, 'interface.html', locals())