Allows to add django-document-library objects to a any other object.
Project description
Allows you to add attachments to any object. Extends the object’s model admin with a tabular inline for adding documents. This is based on django-filer and django-document-library.
Installation
You need to install the following prerequisites in order to use this app:
Django
django-cms
cmsplugin-blog
django-filer
django-document-library
If you want to install the latest stable release from PyPi:
$ pip install django-object-attachments
If you feel adventurous and want to install the latest commit from GitHub:
$ pip install -e git://github.com/bitmazk/django-object-attachments.git#egg=object_attachments
Add object_attachments to your INSTALLED_APPS:
INSTALLED_APPS = ( ..., 'object_attachments', )
Run the migrations:
./manage.py migrate object_attachments
Usage
In your project’s models.py or any file that get’s loaded early, do the following:
from yourapp.admin import YourAdmin from object_attachments.admin import ObjectAttachmentInline YourAdmin.inlines = YourAdmin.inlines[:] + [ObjectAttachmentInline]
Roadmap
Check the issue tracker on github for milestones and features to come.
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
Hashes for django-object-attachments-0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9729a3ab644282e8ab9b9450f6d44b25e6754ba6d575b37bd916bbdb8e80ce9 |
|
MD5 | cb0bf05a3a070a02c529e484b8b8634a |
|
BLAKE2b-256 | 5a3def9f21ab18011b4f45a1c16727c6fedbecaf4b6693d293b130b3b5df4265 |