skrevet views for bok og person
This commit is contained in:
parent
66908ccf02
commit
e2dcdc460f
|
@ -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
|
||||
|
|
|
@ -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})
|
||||
|
|
|
@ -69,6 +69,7 @@ TEMPLATE_DIRS = (
|
|||
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
|
||||
# Always use forward slashes, even on Windows.
|
||||
# Don't forget to use absolute paths, not relative paths.
|
||||
'web/templates/'
|
||||
)
|
||||
|
||||
INSTALLED_APPS = (
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
from django.conf import settings
|
||||
# Uncomment the next two lines to enable the admin:
|
||||
from django.contrib import admin
|
||||
admin.autodiscover()
|
||||
|
@ -11,7 +11,10 @@ urlpatterns = patterns('',
|
|||
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
|
||||
# to INSTALLED_APPS to enable admin documentation:
|
||||
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
||||
|
||||
(r'^media/(?P<path>.*)$','django.views.static.serve',{'document_root' : settings.MEDIA_ROOT}),
|
||||
(r'^book/(?P<book_identifier>\d+)$','web.library.views.BookView'),
|
||||
(r'^book/(?P<book_identifier>\S+)$','web.library.views.BookRedirect'),
|
||||
(r'^person/(?P<person_identifier>\S+)$','web.library.views.PersonView'),
|
||||
# Uncomment the next line to enable the admin:
|
||||
(r'^admin/', include(admin.site.urls)),
|
||||
)
|
||||
|
|
Reference in New Issue