| from django.urls import path | |
| from .views import UserDataPostView, GetFieldView, ContactList1 | |
| urlpatterns = [ | |
| path("post/", UserDataPostView.as_view(), name="post_user_data"), | |
| path("<str:field>/<str:identifier>/", GetFieldView.as_view(), name="get_field_data"), | |
| path('contact/', ContactList1.as_view()), | |
| ] |