neptune/core/templates/index.html

13 lines
393 B
HTML
Raw Normal View History

2022-07-21 12:45:28 +00:00
{% extends "base.html" %}
{% block content %}
2022-07-21 12:46:05 +00:00
<h1 class="title">Pathogen Products Panel</h1>
<h2 class="subtitle">Billing and subscription management</h2>
<div class="col">
2022-07-21 12:45:28 +00:00
{% if user.subscription_active %}
2022-07-21 12:46:05 +00:00
{% include 'checkout.html' %}
2022-07-21 12:45:28 +00:00
{% else %}
2022-07-21 12:46:05 +00:00
<h2> Please setup a payment mandate in the profile page to view products </h2>
2022-07-21 12:45:28 +00:00
{% endif %}
2022-07-21 12:46:05 +00:00
</div>
2022-07-21 12:45:28 +00:00
{% endblock %}