﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
28966	Document that the UUID URL path converter requires dashes	Jahongir	nobody	"I have this url path:

    path('driver/<uuid:driver_guid>/logs/', views.LogListView.as_view(), name='list-logs'),

If I try this: `reverse('list-logs', kwargs={'driver_guid': '3d2dde2ef06d465283c8849e9eba7bae'})`, it does not find the path because the guid does not have '-'. 

If I try `reverse('list-logs', kwargs={'driver_guid': '3d2dde2e-f06d-4652-83c8-849e9eba7bae'})` it does work.

The problem is that `3d2dde2ef06d465283c8849e9eba7bae` is also a valid uuid. 

I think it should be recognized as well."	Cleanup/optimization	closed	Documentation	2.0	Normal	fixed	urls		Accepted	1	0	0	0	0	0
