Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 2.16 KB

README.rst

File metadata and controls

73 lines (47 loc) · 2.16 KB

Django-privates - private media integrration

Django-privates makes it easy to work with login-protected FileFields, all the way through your application.

Version:1.2.0
Source:https://github.com/sergei-maertens/django-privates
Keywords:django, media, private, storage

build-status Requirements status Coverage status Documentation Status python-versions django-versions pypi-version

  • Default private media storage, configurable via settings
  • Model field using the default storage
  • Easy admin integration
  • File serving through sendfile (supports nginx, apache, runserver,...)
pip install django-privates

And then add privates to your INSTALLED_APPS for admin integration ( template discovery):

INSTALLED_APPS = [
    ...,

    'privates',

    ...
]