Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0

Mislykka forsøk på å sette hylle per kategori.

This commit is contained in:
Tiril Anette Langfeldt Rødland 2011-03-06 20:55:05 +00:00
parent 00ae89ce63
commit 8d1cdba906
2 changed files with 2 additions and 4 deletions

View File

@ -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')})

View File

@ -8,9 +8,7 @@
<h2>{{ category }}</h2>
{% if not book_list %}
Det finnes ingen bøker i denne kategorien.
{% else %}
{% if book_list %}
<div class="key">Bøker:</div>
<ul>
{% for book in book_list %}