{% if limits.expiry %}

{{ __("Expires in {0} days", [days_to_expiry]) }}

{{ __("Renew before: {0}", [expires_on]) }}

{% endif %} {% if limits.users %} {% var users_percent = ((enabled_users / limits.users) * 100); %}

{{ __("Users") }}

{{ __("Current Users") }} {{ __("Max Users") }} {{ __("Remaining") }}
{%= enabled_users %} {%= limits.users %} {%= limits.users - enabled_users %}

{% endif %} {% if limits.emails %}

{{ __("Emails sent this month") }}

{% var email_percent = (( emails_sent / limits.emails ) * 100); %} {% var emails_remaining = (limits.emails - emails_sent) %}
{{ __("Emails Sent") }} {{ __("Max Emails") }} {{ __("Remaining") }}
{%= emails_sent %} {%= limits.emails %} {%= emails_remaining %}

{% endif %} {% if limits.space %}

{{ __("Space usage") }}

{% var database_percent = ((limits.space_usage.database_size / limits.space) * 100); %} {% var files_percent = ((limits.space_usage.files_size / limits.space) * 100); %} {% var backup_percent = ((limits.space_usage.backup_size / limits.space) * 100); %}
{{ __("Type") }} {{ __("Size (MB)") }}
{{ __("Database Size") }} {%= limits.space_usage.database_size %} MB
{{ __("Files Size") }} {%= limits.space_usage.files_size %} MB
{{ __("Backup Size") }} {%= limits.space_usage.backup_size %} MB
{{ __("Total") }} {%= limits.space_usage.total %} MB
{{ __("Remaining") }} {%= flt(limits.space - limits.space_usage.total, 2) %} MB
{% endif %}