Ticket #13329: 13329_escaping.diff
File 13329_escaping.diff, 456 bytes (added by , 15 years ago) |
---|
-
docs/topics/generic-views.txt
453 453 454 454 urlpatterns = patterns('', 455 455 #... 456 **(r'^authors/(?P<author_id>\ d+)/$', author_detail),**456 **(r'^authors/(?P<author_id>\\d+)/$', author_detail),** 457 457 ) 458 458 459 459 Then we'd write our wrapper function::