Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMark Hereford
30,355 PointsTrouble passing Django generic Class View challenge. "Didn't find the URL for your view" . See what I'm missing?
I think my code is correct, but my URL is throwing an error. I don't see what I'm missing. I believe the import statement is correct and I thought the URL was correct, but evidently I'm missing something. I can't get past this challenge,
from django.conf.urls import url, include
from . import views
urlpatterns = [
url(r'^/', views.WelcomeView.as_view()),
]
from django.http import HttpResponse
from django.views.generic import View
class WelcomeView(View):
def get(self, request):
return HttpResponse("whatever")
Gregory Olsen
8,515 PointsGregory Olsen
8,515 PointsThe question asks for the route to be '/'. for the url, just do an empty string to get the / route.
urlpatterns = [ url('', views.WelcomeView.as_view()), ]