Rename profile to billing

This commit is contained in:
2022-07-21 13:47:45 +01:00
parent b2707cbbe0
commit 477baeec32
6 changed files with 13 additions and 14 deletions

View File

@@ -30,7 +30,7 @@
<div class="collapse navbar-collapse" id="base-nav">
<ul class="nav navbar-nav navbar-right">
{% if user.is_authenticated %}
<li><a href="{% url 'profile' %}">Profile</a></li>
<li><a href="{% url 'billing' %}">Billing</a></li>
{% endif %}
{% if user.paid %}
<li><a href="{% url 'drilldown' %}">Drilldown</a></li>

View File

@@ -27,6 +27,7 @@
<button id="setup-button">Setup payment mandate</button>
{% endif %}
</div>
{% include 'checkout.html' %}
</div>
</div>
</div>

View File

@@ -1,12 +1,10 @@
{% 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 %}
<h1 class="title">Pathogen Data Insights</h1>
<div class="container">
<h2 class="subtitle">Welcome to the Neptune system</h2>
<div class="col">
<h2 class="subtitle">Hello!</h2>
</div>
</div>
{% endblock %}