2021-07-19 14:36:10 +00:00
|
|
|
from django.urls import path, include
|
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
|
2021-07-30 07:04:32 +00:00
|
|
|
from .views import IndexView, OrderPaymentView, OrderDetailsView, Dashboard
|
2021-07-19 14:36:10 +00:00
|
|
|
|
|
|
|
app_name = 'matrixhosting'
|
|
|
|
|
|
|
|
urlpatterns = [
|
2021-07-30 06:51:35 +00:00
|
|
|
path('order/new/', OrderPaymentView.as_view(), name='payment'),
|
|
|
|
path('order/confirm/', OrderDetailsView.as_view(), name='order_confirmation'),
|
2021-07-19 14:36:10 +00:00
|
|
|
path('dashboard/', Dashboard.as_view(), name='dashboard'),
|
|
|
|
path('', IndexView.as_view(), name='index'),
|
|
|
|
]
|