Skip to main content

Include webdav folders into juntagrico to share files with your members.

Project description

juntagrico-webdav

juntagrico-ci Maintainability Test Coverage image image image image image image image Requirements Status

This app allows to include webdav folders into juntagrico in order to share files with your members.

This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico).

Installation

Install juntagrico-webdav via pip

$ pip install juntagrico-webdav

or add it in your projects requirements.txt

In settings.py add 'juntagrico_webdav', before juntagrico.

INSTALLED_APPS = [
    ...
    'juntagrico_webdav',
    'juntagrico',
]

To avoid reloading the files list all the time, configure caching in settings.py

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
        'LOCATION': 'juntagrico_app_cache_table',
        'TIMEOUT': None,
    }
}

then run

$ python -m manage createcachetable

In your urls.py you also need to extend the pattern:

urlpatterns = [
    ...
    path('', include('juntagrico_webdav.urls')),
]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

juntagrico_webdav-1.6.0.tar.gz (13.9 kB view hashes)

Uploaded Source

Built Distribution

juntagrico_webdav-1.6.0-py3-none-any.whl (15.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page