Enhanced the `deepl_translate` management command with improved placeholder handling, error messages, and support for missing translations. Added `human_readable_id` and `is_business` attributes to the `Order` model, updating associated admin configurations to reflect these changes.
11 lines
285 B
Python
11 lines
285 B
Python
from django.urls import path
|
|
|
|
from core.views import (
|
|
BuyAsBusinessView,
|
|
GlobalSearchView,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path("search/", GlobalSearchView.as_view(), name="global_search"),
|
|
path("orders/buy_as_business/", BuyAsBusinessView.as_view(), name="request_cursed_url"),
|
|
]
|