diff --git a/python/web/urls.py b/python/web/urls.py index 4ed71ef..9da772d 100644 --- a/python/web/urls.py +++ b/python/web/urls.py @@ -12,10 +12,10 @@ urlpatterns = patterns('', # to INSTALLED_APPS to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')), (r'^media/(?P.*)$','django.views.static.serve',{'document_root' : settings.MEDIA_ROOT}), - (r'^book/(?P\d+)/$','web.library.views.BookView'), - (r'^book/(?P\S+)/$','web.library.views.BookRedirect'), + (r'^bok/(?P\d+)/$','web.library.views.BookView'), + (r'^bok/(?P\S+)/$','web.library.views.BookRedirect'), (r'^person/(?P\S+)/$','web.library.views.PersonView'), - (r'^map/(?P\S+)/$', 'web.library.views.MapView'), + (r'^kart/(?P\S+)/$', 'web.library.views.MapView'), # Uncomment the next line to enable the admin: (r'^admin/', include(admin.site.urls)), )