==========================
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')
