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 trialBapi Roy
14,237 PointsWhat is wrong with my view code?
Every piece of code seems to me correct. Still, I am unable to pass the challenge. Pls. help me to find the issue.
from django.shortcuts import render
from .models import Article, Writer
def article_list(request):
articles = Article.objects.all()
return render(request, 'articles/article_list.html', {'articles': articles})
def writer_detail(request, pk)
writer = Writer.objects.get(pk=pk)
return render(request, 'articles/writer_detail.html', {'writer': writer})
2 Answers
Ryan S
27,276 PointsHi Bapi,
You are right, the code is correct except for one small syntax error. You are missing the colon at the end of your function definition.
Bapi Roy
14,237 PointsThank you, Ryan!