app/soc/models/base.py
changeset 751 16dffe0b6336
parent 409 9d24850db88f
child 977 d212d5f4c41a
equal deleted inserted replaced
750:6e8d67d04507 751:16dffe0b6336
    67       A (created-on-first-use) unbound Form object that can be used to
    67       A (created-on-first-use) unbound Form object that can be used to
    68       access Property attributes that are not accessible from the
    68       access Property attributes that are not accessible from the
    69       Property itself via the Model entity.
    69       Property itself via the Model entity.
    70     """
    70     """
    71     if not cls._fields_cache or (cls != cls._fields_cache.__class__.Meta.model):
    71     if not cls._fields_cache or (cls != cls._fields_cache.__class__.Meta.model):
    72       class FieldsProxy(forms_helper.DbModelForm):
    72       class FieldsProxy(forms_helper.BaseForm):
    73         """Form used as a proxy to access User model properties attributes.
    73         """Form used as a proxy to access User model properties attributes.
    74         """
    74         """
    75       
    75       
    76         class Meta:
    76         class Meta:
    77           """Inner Meta class that pairs the User Model with this "form".
    77           """Inner Meta class that pairs the User Model with this "form".