Hi there,
I'm new to django and like it quite much, but have troubles with some
aspects of it.
I'd like to write a base class with specific features for (almost) every
model in my app. It should provide several features, like db-fields for
"hidden", "show after date" with meta.admin configuration and modified
X_get_list-functions in views which take care of this fields values, only
returning e.g. non-hidden objects.
Of course I don't want to cut'n paste this common features into every view
and model, especially into its meta.admin() part.
Is there a django-way to do something like this?
Regards,
Dave