12 lines
408 B
Python
12 lines
408 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.home, name="home"),
|
|
path("register/", views.register_view, name="register"),
|
|
path("login/", views.login_view, name="login"),
|
|
path("logout/", views.logout_view, name="logout"),
|
|
path("dashboard/", views.dashboard, name="dashboard"),
|
|
path("subscribe/<int:plan_id>/", views.subscribe, name="subscribe"),
|
|
]
|