14 lines
568 B
HTML
14 lines
568 B
HTML
{% extends "datacenterlight/emails/base_email_datacenterlight.html" %}
|
|
{% load i18n %}
|
|
{% block email_head %}{{page_header}}{% endblock %}
|
|
{% block email_body %}
|
|
{% url 'hosting:virtual_machines' as my_virtual_machines_url %}
|
|
{% blocktrans with vm.name as vm_name %}You're receiving this mail because your virtual machine [{{vm_name}}] has been cancelled.<br/>
|
|
You can see your order status by clicking [my VM page] below.
|
|
If you want to order a new virtual machine, you can do it by clicking this link [].
|
|
|
|
Visit [my VM page] Now
|
|
|
|
{% endblocktrans %}
|
|
{% endblock %}
|
|
|