skrevet views for bok og person

This commit is contained in:
2011-03-05 19:33:11 +00:00
parent 66908ccf02
commit e2dcdc460f
4 changed files with 26 additions and 4 deletions

View File

@@ -1 +1,19 @@
from web.library.models import *
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render_to_response, get_object_or_404
# Create your views here.
def BookView(request,book_identifier):
book=get_object_or_404(Book,isbn=book_identifier)
people = book.persons.all()
return render_to_response('book/view.html', {'book' : book, 'people' : people})
def BookRedirect(request,book_identifier):
ident=get_object_or_404(Id,id=book_identifier)
return HttpResponseRedirect('/book/'+ident.book.isbn)
def PersonView(request,person_identifier):
person = get_object_or_404(Person,id=person_identifier)
books = person.books.all()
return render_to_response('person/view.html', {'title' : 'Worblehat: person '+person.first_name+' '+person.last_name,'person' : person, 'books' : books})