14 lines
1.1 KiB
HTML
14 lines
1.1 KiB
HTML
{% extends "datacenterlight/emails/base_email_datacenterlight.html" %}
|
|
{% load i18n %}
|
|
{% block email_head %}{{page_header}}{% endblock %}
|
|
{% block email_body %}
|
|
{% url 'hosting:orders' order.id as order_url %}
|
|
{% blocktrans with vm.name as vm_name %}You have ordered a new virtual machine!
|
|
<br/>
|
|
Your order of [{{vm_name}}] has been charged.<br/><br/>
|
|
You can view your invoice by clicking the button below.<br/><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 }}{{order_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 'View Invoice' %}</a>
|
|
</div>
|
|
{% endblock %}
|