Begin implementing Drilldown plan
This commit is contained in:
@@ -4,9 +4,9 @@
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">s
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Pathogen - Login</title>
|
||||
<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>
|
||||
|
||||
18
core/templates/denied.html
Normal file
18
core/templates/denied.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user