{% extends "pages/dashboard/base.html" %} {% import "components/breadcrumb.html" as breadcrumbTemplate%} {% import "components/information-card.html" as informationCardTemplate%} {% import "components/subscription-form.html" as subscriptionFormTemplate%} {%set createSubscription = false%} {% block dashboardContent%}
{{breadcrumbTemplate.render(breadcrumb)}}
{{subscriptionFormTemplate.render(subscriptionForm)}}
{% for information in informationCard %} {{informationCardTemplate.render(information)}} {% endfor %}
{% endblock dashboardContent%}