Alex Mzirai

Results 3 issues of Alex Mzirai

My main urls.py file looks like this... urlpatterns = [ url(r'^$', views.home, name='home'), # the route for home url(r'^signup/$', accounts_views.signup, name='signup'), url('r^logout/$', auth_views.LogoutView.as_view(), name='logout'), # this is a Django class-based...

I'm following your tutorial on the blog posts, but i ran into a problem trying to render the blog posts list view template. ![screenshot - 09-mar-18 10_10_24 pm](https://user-images.githubusercontent.com/28978304/37225308-404d030c-23e7-11e8-8963-4b094972eb78.jpg) ![screenshot -...

My main urls.py file looks like this... urlpatterns = [ url(r'^$', views.home, name='home'), # the route for home url(r'^signup/$', accounts_views.signup, name='signup'), url('r^logout/$', auth_views.LogoutView.as_view(), name='logout'), # this is a Django class-based...