~panosl/+junk/django-attachments

1 by Martin Mahner
Initial structure and data
1
from attachments.models import Attachment
2
from django.contrib.contenttypes import generic
3
4
class AttachmentInlines(generic.GenericStackedInline):
5
    model = Attachment
6
    extra = 1