Begin implementing Drilldown functionality

This commit is contained in:
2022-07-21 13:46:48 +01:00
parent e047a986e9
commit e866277f52
10 changed files with 57 additions and 28 deletions

View File

@@ -8,7 +8,7 @@
<title>Pathogen - {{ request.path_info }}</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<link rel="stylesheet" href="{% static 'style.css' %}" />
<script src="https://js.stripe.com/v3/"></script>
{# <script src="https://js.stripe.com/v3/"></script> #}
</head>
<body>
<section class="hero is-primary is-fullheight">
@@ -28,7 +28,7 @@
{% if user.is_authenticated %}
<li><a href="{% url 'profile' %}">Profile</a></li>
{% endif %}
{% if user.plan == "drilldown" and user.paid %}
{% if user.paid %}
<li><a href="{% url 'drilldown' %}">Drilldown</a></li>
{% endif %}
{% if not user.is_authenticated %}