{% extends "mails/base.txt" %}
{% load i18n %}

{% block body %}

{% blocktrans with vm=instance.name state=instance.state|lower date=instance.time_of_delete %}
Your {{state}} virtual machine "{{vm}}" has been DELETED
at {{date}}.
{% endblocktrans %}

{% blocktrans %}
The disk image is IRRECOVERABLY REMOVED.
{% endblocktrans %}

{% blocktrans with url=url %}
You can start a new instance of the template on the cloud portal:
{{url}}
{% endblocktrans %}
{% endblock %}