Rename profile to billing
This commit is contained in:
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user