Added user registration

This commit is contained in:
ITQ
2024-02-29 18:12:41 +03:00
parent b9a7654830
commit a04b06bb4b
14 changed files with 198 additions and 7 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import countries.views
urlpatterns = [
path("", countries.views.CountryListView.as_view(), name="countries"),
path(
"<str:alpha2>/",
"/<str:alpha2>",
countries.views.CountryByAlpha2View.as_view(),
name="country_by_alpha2",
),