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