added payments, epay and other stuff

This commit is contained in:
2025-07-21 18:08:01 +03:00
parent 0ffd79cee9
commit 680a508d42
11 changed files with 43 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from django.urls import path
from .views import validate_container
urlpatterns = [
# ... your other urls
path('api/validate-container/<str:number>/', validate_container, name='validate_container'),
]