Ordnet html-visning av hyller.

Denne trenger fiksing, gjerne med CSS-magi, men viser foreløpig hyller
med kategorier representert som html-tabeller.
This commit is contained in:
2011-03-06 11:31:51 +00:00
parent 39c3e4ec38
commit 77490d2173
4 changed files with 44 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ urlpatterns = patterns('',
(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'),
(r'^map/(?P<shelf_identifier>\S+)$', 'web.library.views.MapView'),
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
)