Skip to content
This repository has been archived by the owner on May 15, 2019. It is now read-only.

Adds WebDAVImageField and WebDAVFileField, which will upload files to WebDAV

Notifications You must be signed in to change notification settings

MyBook/django-webdav-storage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 

Repository files navigation

django-webdav-storage

Usage

In your settings:

WEBDAV_STORAGE_LOCATION = 'http://my-web-storage.com/upload/'

In your models:

class Attachement(models.Model):

object = models.ForeignKey(Object) content = WebDAVFileField(upload_to='storage', null=True)

class Photo(models.Model):

user = models.ForeignKey(User) content = WebDAVImageField(upload_to='photos')

About

Adds WebDAVImageField and WebDAVFileField, which will upload files to WebDAV

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages