You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
534 B

  1. {% if not sub.subscription_id %}
  2. <span class="billing-empty">No payment method added</span>
  3. {% elif sub.pm_is_card %}
  4. <img src="{{ pm.image_url }}" height="30" /> <span class="masked_number">{{ pm.masked_number }}</span>
  5. {% if pm.expired %}
  6. <span class="text-danger">(expired)</span>
  7. {% endif %}
  8. {% elif sub.pm_is_paypal %}
  9. <img src="{{ pm.image_url }}" height="30" /> {{ pm.email }}
  10. {% endif %}
  11. {% if sub.subscription_id %}
  12. <input type="hidden" id="nbd" value="{{ sub.next_billing_date }}" />
  13. {% endif %}