{% extends "base.html" %} {% block content %}

Welcome, {{ user.first_name }}!

Plan: {{ user.plan }}

Stripe ID: {{ user.stripeID }}

Setup intent: {{ user.seti }}

Mandate active: {{ user.mandateActive }}

Subscription ID: {{ user.subscriptionID }}

Last payment: {{ user.lastPayment }}

Creation date: {{ user.creationDate }}

Paid: {{ user.paid }}

{% if user.seti %} {% if user.plan == None %} {% include 'checkout.html' %} {% else %}
{% endif %} {% else %} {% endif %}
{% endblock %}