From 91ceb59bae8818e407614bb0ff32f21ced1eadaa Mon Sep 17 00:00:00 2001 From: Jake Dahn Date: Mon, 7 Nov 2011 12:33:33 -0800 Subject: [PATCH] bug #873216: Fixing ajax refresh for instance view. Change-Id: I2ecf9b7a07f0a8df5f34d14966c61ed3b803e081 --- django-openstack/django_openstack/dash/views/instances.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django-openstack/django_openstack/dash/views/instances.py b/django-openstack/django_openstack/dash/views/instances.py index f4a05e3c0a..6a7261291d 100644 --- a/django-openstack/django_openstack/dash/views/instances.py +++ b/django-openstack/django_openstack/dash/views/instances.py @@ -153,7 +153,7 @@ def refresh(request, tenant_id): reboot_form = RebootInstance() return shortcuts.render_to_response( - 'django_openstack/dash/instances/_instance_list.html', { + 'django_openstack/dash/instances/_list.html', { 'instances': instances, 'terminate_form': terminate_form, 'reboot_form': reboot_form,