{% extends 'account_layout.html' %} {% load i18n %} {% load static %} {% block pagetitle %}{% trans 'Your account' %}{% endblock %} {% block headers %} {% endblock %} {% block account_content_outer %}
{% if user_motd %}

{{ user_motd | safe }}

{% endif %}
{% if not subscription or subscription.status != 'active' %} {% endif %}
{% trans "Username" %} {{user.username}}
{% trans "Status" %}
{% trans "Subscription" %} {% if subscription.status == 'active' and request.user.vpnuser.subscr_is_failing %} {% blocktrans trimmed with since=subscription.next_renew|default:user.vpnuser.expiration|date:'Y-m-d' backend=subscription.backend.backend_verbose_name %} FAILING since {{since}}. ({{backend}})
Please cancel and subscribe again if you need to switch to another payment method. {% endblocktrans %} {% elif subscription.status == 'active' %} {% blocktrans trimmed with until=subscription.next_renew|default:user.vpnuser.expiration|date:'Y-m-d' backend=subscription.backend.backend_verbose_name %} ACTIVE. Renews on {{until}} via {{backend}}. {% endblocktrans %} ({% trans "cancel" %}) {% else %} - {% endif %}
{% trans "Expiration" %} {{user.vpnuser.expiration|date:'Y-m-d H:i'|default:'-'}} {% if user.vpnuser.is_paid %} {% blocktrans trimmed with left=user.vpnuser.expiration|timeuntil %} ({{ left }} left) {% endblocktrans %} {% endif %}
{% if not subscription %}
{% endif %}

{% blocktrans trimmed %} Please recommend us to your friends and on social media! We do not advertise and rely on you to help us grow and improve our services. {% endblocktrans %}
{% blocktrans trimmed %} Every subscription through this link will grant you 1 month of VPN access: {% endblocktrans %}

{% endblock %}