~panosl/+junk/django-attachments

1
2
3
4
5
6
from attachments.models import Attachment
from django.contrib.contenttypes import generic

class AttachmentInlines(generic.GenericStackedInline):
    model = Attachment
    extra = 1