2021-07-19 16:36:10 +02:00
|
|
|
from django.urls import path, include
|
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
2021-08-04 12:03:55 +02:00
|
|
|
from wkhtmltopdf.views import PDFTemplateView
|
2021-08-02 11:24:19 +02:00
|
|
|
from .views import *
|
2021-07-19 16:36:10 +02:00
|
|
|
|
|
|
|
app_name = 'matrixhosting'
|
|
|
|
|
|
|
|
urlpatterns = [
|
2021-07-30 08:51:35 +02:00
|
|
|
path('order/new/', OrderPaymentView.as_view(), name='payment'),
|
2021-08-12 12:28:19 +02:00
|
|
|
path('order/confirm/', OrderConfirmationView.as_view(), name='order_confirmation'),
|
|
|
|
path('instances/', InstancesView.as_view(), name='instances'),
|
2021-09-10 09:58:42 +02:00
|
|
|
path('instances/webhook/', handle_k8s_webhook),
|
2021-08-09 09:43:11 +02:00
|
|
|
path('orders/', OrdersView.as_view(), name='orders'),
|
2021-08-17 19:05:44 +02:00
|
|
|
path('pricing/', PricingView.as_view(), name='pricing'),
|
2021-07-19 16:36:10 +02:00
|
|
|
path('', IndexView.as_view(), name='index'),
|
|
|
|
]
|