Include webdav folders into juntagrico to share files with your members.
Project description
juntagrico-webdav
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
Release history Release notifications | RSS feed
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)
Built Distribution
Close
Hashes for juntagrico_webdav-1.6.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf15cd2156873dac0162ff5d07b6ccdfe2ec5708c2dd0fe1a72d28948958e4d9 |
|
MD5 | cc0fc14d448f2e9674f65652afa24bcb |
|
BLAKE2b-256 | 916ae1f11be04d21fe2bddb634fa9be72bbd9c6ed3a374fc4cb787f5384f13b1 |