first commit

This commit is contained in:
2026-02-22 12:29:18 +05:00
commit d34447d322
40 changed files with 585 additions and 0 deletions

7
autoapp/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path('add/', views.AutoCreateView.as_view(), name='add_auto'),
path('', views.auto_list, name='auto_list'),
]