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

@@ -40,8 +40,8 @@ class Book(models.Model):
num_pages = models.IntegerField(null=True, blank=True)
series = models.ForeignKey(BookSeries, related_name='books', null=True, blank=True)
description = models.CharField(max_length=1023, null=True, blank=True)
picture = models.ImageField(upload_to='%Y/%m/%d/pictures', null=True, blank=True)
thumbnail = models.ImageField(upload_to='%Y/%m/%d/thumbnails', null=True, blank=True)
picture = models.ImageField(upload_to='pictures', null=True, blank=True)
thumbnail = models.ImageField(upload_to='thumbnails', null=True, blank=True)
# references = models.ManyToManyField(Reference, related_name='books',null=True, blank=True)
#Generate a string from book info

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