{% import 'languages/'+lang|default('en')+'.html' as lang %} {% for s in sub %} {% if s.Plan == 'user' %} {% set plan = 'Home' %} {% elif s.Plan == 'company' %} {% set plan = 'Enterprise' %} {% elif s.Plan == 'cloud' %} {% set plan = 'Cloud' %} {% elif s.Plan == 'support' %} {% set plan = 'Premium' %} {% elif s.Plan == 'Trial' %} {% set plan = 'Trial' %} {% else %} {% set plan = 'Free' %} {% endif %} {{lang.words.plan|title()}} {{plan}} {{lang.words.status|title()}} {% if plan == 'Free' %} N/A {% else %} {{lang.words.active|title()}} {% else %} style="color: var(--red-color); font-weight: bold">Blocked {% endif %} {% endif %} {{lang.words.pay_method|title()}} {% if plan == 'Free' %} N/A {% else %} {% if s.Method == 'Boosty' %} Boosty {% elif s.Method == 'Patreon' %} Patreon {% else %} {{s.Method}} {% endif %} {% endif %} {% endfor %}