Skip to content

Commit

Permalink
register from urlpatterns
Browse files Browse the repository at this point in the history
  • Loading branch information
RustamovAkrom committed Oct 3, 2024
1 parent 53bf944 commit cbdea2c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/orders/urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from django.urls import path
from . import views


app_name = "orders"

urlpatterns = [
path('create/', views.order_create, name='order_create'),
]

0 comments on commit cbdea2c

Please sign in to comment.