We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Genarated URLS.py
# url(r'^Home/map/$', views.MapListView.as_view(), name='Home_map_list'), # url(r'^Home/map/create/$', views.MapCreateView.as_view(), name='Home_map_create'), # url(r'^Home/map/detail/(?P<pk>\S+)/$', views.MapDetailView.as_view(), name='Home_map_detail'), # url(r'^Home/map/update/(?P<pk>\S+)/$', views.MapUpdateView.as_view(), name='Home_map_update'),
Correct URL pattern url(r'^$', views.MapListView.as_view(), name='Home_map_list'), url(r'^create/$', views.MapCreateView.as_view(), name='Home_map_create'), url(r'^detail/(?P\S+)/$', views.MapDetailView.as_view(), name='Home_map_detail'), url(r'^update/(?P\S+)/$', views.MapUpdateView.as_view(), name='Home_map_update'),
The text was updated successfully, but these errors were encountered:
Is this issue for this repo? This code doesn't look related.
Sorry, something went wrong.
No branches or pull requests
Genarated URLS.py
urls for Map
Correct URL pattern
url(r'^$', views.MapListView.as_view(), name='Home_map_list'),
url(r'^create/$', views.MapCreateView.as_view(), name='Home_map_create'),
url(r'^detail/(?P\S+)/$', views.MapDetailView.as_view(), name='Home_map_detail'),
url(r'^update/(?P\S+)/$', views.MapUpdateView.as_view(), name='Home_map_update'),
The text was updated successfully, but these errors were encountered: