{% extends 'profile/profile-base.twig' %} {% block profile_content %}
{% for subscription in subscriptions %}

{% if subscription.view_url %} {{ fn('pll_e', 'Подписка от') }} {{ subscription.date_created | date('d.m.Y') }} {% else %} {{ fn('pll_e', 'Подписка от') }} {{ subscription.date_created | date('d.m.Y') }} {% endif %}

{{ subscription.id }}

{{ fn('pll_e', 'Сумма:') }}

{{ subscription.total }} {{ subscription.currency }} / {{ subscription.billing_period }}

{{ fn('pll_e', 'Следующий платеж:') }}

{{ subscription.next_payment_date | date('d.m.Y') }}

{% for item in subscription.items %} {% set product = item.product %} {% set image_id = product.image_id %} {% if product.permalink %} {{ product.name }} {% else %} {{ product.name }} {% endif %} {% endfor %}
{% else %}

{{ fn('pll_e', 'У вас нет активных подписок.') }}

{% endfor %}
{% endblock %}