Merge pull request #597 from bauerj/pdf-preview

Add PDF preview next to edit form
This commit is contained in:
David Martin
2020-04-02 00:01:00 +10:00
committed by GitHub
3 changed files with 40 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ urlpatterns = [
# File downloads
url(
r"^fetch/(?P<kind>doc|thumb)/(?P<pk>\d+)$",
r"^fetch/(?P<kind>doc|thumb|preview)/(?P<pk>\d+)$",
FetchView.as_view(),
name="fetch"
),