Skip to main content

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

This version

0.1

Download files

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

Source Distribution

django-object-attachments-0.1.tar.gz (7.4 kB view hashes)

Uploaded Source

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