The first stages of getting thumbnails back

This commit is contained in:
Daniel Quinn
2016-03-05 01:57:49 +00:00
parent 5c41e717f0
commit 52f15b4de1
7 changed files with 135 additions and 5 deletions

View File

@@ -44,7 +44,11 @@ urlpatterns = [
# url(r"^$", IndexView.as_view(), name="index"),
# File downloads
url(r"^fetch/(?P<pk>\d+)$", FetchView.as_view(), name="fetch"),
url(
r"^fetch/(?P<kind>doc|thumb)/(?P<pk>\d+)$",
FetchView.as_view(),
name="fetch"
),
# The Django admin
url(r"admin/", admin.site.urls),