From 7a07785a9418a3e9655fbfe1c54464b5ca0bd2a1 Mon Sep 17 00:00:00 2001 From: Arvind Tiwari Date: Thu, 28 Sep 2017 01:11:39 +0530 Subject: [PATCH] vm cancel email subject changed --- hosting/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosting/views.py b/hosting/views.py index 0db4ad39..39f986a1 100644 --- a/hosting/views.py +++ b/hosting/views.py @@ -1081,7 +1081,8 @@ class VirtualMachineView(LoginRequiredMixin, View): 'vm_name': vm_name, 'base_url': "{0}://{1}".format(self.request.scheme, self.request.get_host()), - 'page_header': _('Virtual Machine Cancellation') + 'page_header': _('Virtual Machine %(vm_name)s Cancelled') % { + 'vm_name': vm_name} } email_data = { 'subject': context['page_header'],