skrevet views for bok og person
This commit is contained in:
@@ -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
Block a user