Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 359 Bytes

README.rst

File metadata and controls

21 lines (14 loc) · 359 Bytes

INFO

A custom field and widget to store filepicker.io urls in a Django project.

Usage

In models.py just add the field:

filepicker_url = FilePickerURLModelField()

When retreiving the data:

URL = filepicker_url.0

Name = filepicker_url.1

Key = filepicker_url.2

TODO

Use named properties instead of indices