Metadata-Version: 1.0
Name: django-stdfile
Version: 0.5
Summary: Django application that improves management of FileFields
Home-page: https://tracpub.yaco.es/djangoapps/wiki/StdFile
Author: Yaco Sistemas S.L.
Author-email: pmartin@yaco.es
License: LGPL 3
Description: ==========================
        Django StdFile application
        ==========================
        
        Overview
        ========
        
        This django application simply adds two new fields, *RemovableFileField* and *RemovableImageField*.
        This are the same that the original FileField and ImageField, but it will allow
        
        Installation
        ============
        
        To install this application:
        
         #. easy_install django-stdfile
        
         #. Include ``'stdfile'`` in ``settings.INSTALLED_APPS``,
        
        Examples
        ========
        
        To use it, you just
        
        ::
          from stdfile.db import RemovableFileField, RemovableImageField
        
          class FooModel(model.Model):
              some_file = RemovableFileField(name='Some file')
              some_image = RemovableImageField(name='Some image')
        
Keywords: django stdfiles filefields files
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
