Begin implementing Drilldown plan

This commit is contained in:
2022-07-21 13:45:57 +01:00
parent 85998bbc38
commit 4bd2bb2f1a
7 changed files with 78 additions and 146 deletions

View File

@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
Access denied
</h1>
<h2 class="subtitle">
Sorry, you do not have the necessary permissions to view this page.
</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 %}