1👍
url (r'^$', 'TasksManager.index.page'),
url (r'^index$', 'TasksManager.index.page'),
No need to add views module name in your url as your url will map directly it page function in index module.
Source:stackexchange.com
1👍
url (r'^$', 'TasksManager.index.page'),
url (r'^index$', 'TasksManager.index.page'),
No need to add views module name in your url as your url will map directly it page function in index module.