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

{% block body %}

{% blocktrans with vm=instance.name state=instance.state|lower date=instance.time_of_delete time=instance.time_of_delete|timeuntil %}
Your {{state}} virtual machine "{{vm}}" is going to be DELETED
at {{date}} (in {{time}}).
{% endblocktrans %}

{% blocktrans %}
The disk image will be IRRECOVERABLY REMOVED.
{% endblocktrans %}

{% blocktrans with url=url %}
You can renew or delete the instance on the cloud portal:
{{url}}
{% endblocktrans %}
{% endblock %}