Rename profile to billing

modern-tables
Mark Veidemanis 2 years ago
parent b2707cbbe0
commit 477baeec32
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -23,7 +23,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
SECRET_KEY = "insecure-fake-key-do-not-use-in-production"
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
DEBUG = True
ALLOWED_HOSTS = []

@ -19,11 +19,11 @@ from django.contrib import admin
from django.urls import include, path
from core.ui.views.drilldown import Drilldown
from core.views import Home, Profile, Signup
from core.views import Billing, Home, Signup
urlpatterns = [
path("", Home.as_view(), name="home"),
path("profile/", Profile.as_view(), name="profile"),
path("billing/", Billing.as_view(), name="billing"),
path("admin/", admin.site.urls),
path("accounts/", include("django.contrib.auth.urls")),
path("accounts/signup/", Signup.as_view(), name="signup"),

@ -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>

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

@ -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 %}

@ -16,8 +16,8 @@ class Home(View):
return render(request, self.template_name)
class Profile(LoginRequiredMixin, View):
template_name = "profile.html"
class Billing(LoginRequiredMixin, View):
template_name = "billing.html"
def get(self, request):
return render(request, self.template_name)

Loading…
Cancel
Save