I want a url that accepts all characters,for example:
(r\'^company/(?P[a-zA-Z]+)/doclist/$\',\'CompanyHub.views.docList\')
for <
Your code should look like this:
(ur'^company/(?P.*)/doclist/$','CompanyHub.views.docList')
We need the 'u' at the beginning to tell python that the string accepts unicode characters.