from django.urls import path from . import views app_name = 'webservice' urlpatterns = [ path("", views.order_reg, name="order_reg"), ]