Mislykka forsøk på å sette hylle per kategori.
This commit is contained in:
@@ -74,7 +74,7 @@ def CategoryIndex(request):
|
||||
def CategoryView(request,category_identifier):
|
||||
category = get_object_or_404(Category,id=category_identifier)
|
||||
book_list = category.book_set.all()
|
||||
return render_to_response('category/view.html', {'category': category, 'book_list': book_list})
|
||||
return render_to_response('category/view.html', {'category': category, 'book_list': book_list})
|
||||
|
||||
def IndexView(request):
|
||||
return render_to_response('index.html', {'categories': Category.objects.all().order_by('name')})
|
||||
|
Reference in New Issue
Block a user