Added/corrected docstrings for custom model fields and EntityProxyFields (now renamed...
[philo.git] / philo / forms / entities.py
index 5d34cce..ba72d7d 100644 (file)
@@ -94,6 +94,10 @@ class EntityFormMetaclass(ModelFormMetaclass):
 
 
 class EntityForm(ModelForm):
+       """
+       :class:`EntityForm` knows how to handle :class:`.Entity` instances - specifically, how to set initial values for :class:`.AttributeProxyField`\ s and save cleaned values to an instance on save.
+       
+       """
        __metaclass__ = EntityFormMetaclass
        
        def __init__(self, *args, **kwargs):