2017-09-03 11:20:25 +00:00
|
|
|
{% extends "datacenterlight/emails/base_email_datacenterlight.txt" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block email_head %}{{page_header}}{% endblock %}
|
|
|
|
{% block email_body %}
|
|
|
|
{% url 'hosting:virtual_machines' as my_virtual_machines_url %}
|
|
|
|
{% url 'hosting:orders' order.id as vm_order_url %}
|
2017-09-03 15:13:49 +00:00
|
|
|
{% blocktrans with vm.name as vm_name %}You're receiving this mail because your virtual machine [{{vm_name}}] has been cancelled.
|
|
|
|
You can see your order status by clicking here
|
2017-09-03 11:20:25 +00:00
|
|
|
{{base_url}}{{vm_order_url}}
|
|
|
|
If you want to order a new virtual machine, you can do it by clicking this link.
|
|
|
|
{{base_url}}{{my_virtual_machines_url}}
|
|
|
|
{% endblocktrans %}
|
|
|
|
{% endblock %}
|