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 trialSavious Munyaradzi Ngundu
16,920 Pointshelp me with Combine DetailView and DeleteView
And, finally, we shouldn't let just anyone see the delete form. Wrap the form in the template with {% if user.is_authenticated %} so it'll only show for authenticated users.
from django.contrib.auth.mixins import LoginRequiredMixin
from django.core.urlresolvers import reverse_lazy
from django.views import generic
from . import models
class ArticleList(generic.ListView):
model = models.Article
class ArticleDetail(generic.DeleteView, generic.DetailView):
model = models.Article
template_name = 'articles/article_detail.html'
class ArticleCreate(LoginRequiredMixin, generic.CreateView):
fields = ('title', 'body', 'author', 'published')
model = models.Article
class ArticleUpdate(LoginRequiredMixin, generic.UpdateView):
fields = ('title', 'body', 'author', 'published')
model = models.Article
class ArticleDelete(LoginRequiredMixin, generic.DeleteView):
model = models.Article
success_url = reverse_lazy('articles:list')
class ArticleSearch(generic.ListView):
model = models.Article
def get_queryset(self):
qs = super().get_queryset()
term = self.kwargs.get('term')
if term:
return qs.filter(body__icontains=term)
return qs.none()
<h1>{{ article.title }}</h1>
<p>By: {{ article.author }}</p>
{{ article.body|linebreaks }}
{% if user.is_authenticated %}
<hr>
<form method="post">
{% csrf_token %}
{{ form }}
</form>
1 Answer
matth89
17,826 PointsYou're very close! Just don't forget that in Django templates, if statements must be closed with an endif tag. Add that to the end of your template, and the challenge will pass.