mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
18 lines
576 B
Python
18 lines
576 B
Python
from django_downloadview import ObjectDownloadView
|
|
|
|
from demoproject.object.models import Document
|
|
|
|
|
|
#: Serve ``file`` attribute of ``Document`` model.
|
|
default_file_view = ObjectDownloadView.as_view(model=Document)
|
|
|
|
#: Serve ``another_file`` attribute of ``Document`` model.
|
|
another_file_view = ObjectDownloadView.as_view(
|
|
model=Document,
|
|
file_field='another_file')
|
|
|
|
#: Serve ``file`` attribute of ``Document`` model, using client-side filename
|
|
#: from model.
|
|
deserialized_basename_view = ObjectDownloadView.as_view(
|
|
model=Document,
|
|
basename_field='basename')
|