equal
deleted
inserted
replaced
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". |