Add PDF preview next to edit form

This commit is contained in:
Johann Bauer 2020-01-04 00:33:24 +01:00
parent 5317019d71
commit a4573a8de8
3 changed files with 40 additions and 2 deletions

View File

@ -3,6 +3,10 @@
{% block content %} {% block content %}
{{ block.super }} {{ block.super }}
<div class="side-preview">
<h2>Preview</h2>
<object data="/fetch/preview/{{object_id}}"></object>
</div>
{% if next_object %} {% if next_object %}
<script type="text/javascript">//<![CDATA[ <script type="text/javascript">//<![CDATA[
@ -17,6 +21,37 @@
{% endblock content %} {% endblock content %}
{% block extrastyle %}
{{ block.super }}
<style>
.side-preview {
width: 100%;
height: 800px;
clear: both;
}
.side-preview object {
height: 100%;
width: 100%;
}
@media screen and (min-width: 1500px) {
#content-main {
width: 50%;
}
#footer {
padding: 0;
}
.side-preview {
float: right;
width: 40%;
height: 80vh;
clear: none;
}
}
</style>
{% endblock %}
{% block footer %} {% block footer %}
{{ block.super }} {{ block.super }}

View File

@ -69,7 +69,10 @@ class FetchView(SessionOrBasicAuthMixin, DetailView):
content_type=content_types[self.object.file_type] content_type=content_types[self.object.file_type]
) )
DISPOSITION = 'inline' if settings.INLINE_DOC else 'attachment' DISPOSITION = (
'inline' if settings.INLINE_DOC or self.kwargs["kind"] == 'preview'
else 'attachment'
)
response["Content-Disposition"] = '{}; filename="{}"'.format( response["Content-Disposition"] = '{}; filename="{}"'.format(
DISPOSITION, self.object.file_name) DISPOSITION, self.object.file_name)

View File

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