You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
neptune/core/templates/index.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 %}