2👍
✅
Looks like media.urls only has two urls, videos/ & videos/pk/
This means your only two url options are browse/videos/ and browse/videos/pk/
There is no url to just ‘browse/’
If you wanted to add one, you’d need to add this to media.urls:
url(r'^$', some_view, name='some_view_name'),
Source:stackexchange.com