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 trialArmendi Gjinolli
489 PointsWhat is Wrong ? Why isnt working
Create a view named writer_detail that takes a pk argument. It should .get() the Writer with the requested pk and render() the "articles/writer_detail.html" template. Provide the Writer in the context as "writer". I dont know what I have done incorrect ...
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)
objects = Writer.objects.get(pk=pk)
return render(request,"articles/writer_detail.html",{'writer': objects})
1 Answer
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsYou're missing a colon
def writer_detail(request,pk) # <--- missing colon here
objects = Writer.objects.get(pk=pk)
return render(request,"articles/writer_detail.html",{'writer': objects})
rydavim
18,814 Pointsrydavim
18,814 PointsIf Henrik Christensen has fully addressed your question, I would encourage you to mark as Best Answer to let them know and flag your post as solved. Happy coding!