{% 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 %} Plan {{plan}} Status {% if plan == 'Free' %} N/A {% else %} Active {% else %} style="color: var(--red-color); font-weight: bold">Blocked {% endif %} {% endif %} Pay method {% if plan == 'Free' %} N/A {% else %} {% if s.Method == 'Boosty' %} Boosty {% elif s.Method == 'Patreon' %} Patreon {% else %} {{s.Method}} {% endif %} {% endif %} {% endfor %}