Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2Storage backends. 

3 

4See https://docs.djangoproject.com/en/stable/howto/custom-file-storage/ 

5 

6Currently only a simple overwrite storage is provided. A number of experimental AJAX upload storage classes are also in 

7development. There are no plans at this time to incorporate additional storage classes, and only the the local AJAX 

8storage is being actively tested. See the `storage backends page of Django Packages`_ for more options. The 

9`django-storages`_ package appears to be the most popular. 

10 

11.. _django-storages: https://django-storages.readthedocs.io/ 

12.. _storage backends page of Django Packages: https://djangopackages.org/grids/g/storage-backends/ 

13 

14"""