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

@@ -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 = []

View File

@@ -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"),