2
Add $
at the end of the regular expression:
url(r'^dashboard$', views.dashboard, name='dashboard'),
This would require the end of the string after the dashboard
word.
Source:stackexchange.com
2
Add $
at the end of the regular expression:
url(r'^dashboard$', views.dashboard, name='dashboard'),
This would require the end of the string after the dashboard
word.