[Answer]-Django no module named wiki

1👍

I am following the same tutorials which you were learning from. You just need to go to your wikicamp/url.py file and edit the patterns dict as:

r'^wikicamp/(?P<page_name>[^/]+)/edit/$', 'wiki.views.edit_page'

instead of:

r'^wikicamp/(?P<page_name>[^/]+)/edit/$', 'wikicamp.wiki.views.edit_page'

Leave a comment