32 lines
989 B
HTML
32 lines
989 B
HTML
{% import "templates/emails/macros.html" as utils %} {% extends
|
|
"templates/emails/base.html" %} {% block content %}
|
|
|
|
<td class="text-base leading-6 text-gray-900">
|
|
<div class="p-8 bg-white from-markdown">
|
|
<p class="mb-4 font-bold">
|
|
Server <strong>{{ server }}</strong> has used more than 90% of storage
|
|
available.
|
|
</p>
|
|
<p class="mb-6">
|
|
Your server has currently used {{ current_disk_usage }} of the available
|
|
{{ available_disk_space }}
|
|
<br />
|
|
To ensure that the server is not overloaded we are auto increasing the
|
|
storage by <strong>{{ increase_by }}</strong><br />
|
|
<br />
|
|
|
|
To disable auto disk expansion please refer the following
|
|
<a href="https://docs.framework.jingrow.com/cloud/storage-addons" target="_blank"
|
|
><b>documentation</b></a
|
|
><br />
|
|
|
|
<strong>Need Help ?</strong><br />
|
|
Please raise a ticket on support.framework.jingrow.com for queires.
|
|
</p>
|
|
|
|
{{ utils.separator() }} {{ utils.signature() }}
|
|
</div>
|
|
</td>
|
|
|
|
{% endblock %}
|