[1.8 to 1.10] Why I had to set trailing slash to false in my DRF urls.py in order to make things work like before the update

2017-07-16 Thread Luigi Mognetti
Hi, I was running on 1.8, using django mainly for his API with DRF. Everything worked well. Since I went on with 1.10 I have this kind of message when I make a PUT request to my API : You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't

url redirect with kwargs no NoReverseMatch

2016-04-05 Thread Luigi Mognetti
http://stackoverflow.com/questions/36411798/url-redirect-with-kwargs-no-noreversematch main-project urls.py : from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ url(r'^admin/', include(admin.site.urls)), url(r'', include('d