15 lines
1.2 KiB
HTML
15 lines
1.2 KiB
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 %}
|
|
{% url 'hosting:orders' as vm_orders_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.<br/>
|
|
If you want to order a new virtual machine, you can do it by clicking <a href="{{base_url}}{{my_virtual_machines_url}}">this link</a>.<br/>
|
|
{% endblocktrans %}
|
|
<div class="button" style="border-collapse: collapse; font-family: 'Lato', 'sans-serif' !important; font-size: 14px; color: #777777; text-align: center; line-height: 21px; padding: 30px 0;" align="center">
|
|
<a href="{{ base_url }}{{vm_orders_url}}" style="border-radius: 5px; color: #ffffff; display: inline-block; font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important; font-size: 14px; font-weight: regular; line-height: 45px; text-align: center; text-decoration: none !important; width: 155px; -webkit-text-size-adjust: none; mso-hide: all; background: #ff6f6f;">{% trans 'My VM page' %}</a>
|
|
</div>
|
|
{% endblock %}
|
|
|