19 lines
393 B
HTML
19 lines
393 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="title">
|
||
|
Pathogen Products Panel
|
||
|
</h1>
|
||
|
<h2 class="subtitle">
|
||
|
Billing and subscription management
|
||
|
</h2>
|
||
|
<div class="col">
|
||
|
{% if user.subscription_active %}
|
||
|
{% include 'checkout.html' %}
|
||
|
{% else %}
|
||
|
<h2> Please setup a payment mandate in the profile page to view products </h2>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|