Django admin ui is not very usefull. I've made a lot of Django sites and
the admin UI is reserved to... admins eg: developers or advanced users.
Except if you have a very simple app but we are not building blogs.
For me the important thing is the ability to build a form from a model
and to be able to:
- hiding/deleting some fields
- overriding a field widget for a field type or a specific field
- adding/inserting custom fields
- manage some fieldsets - splitting a model in 2 forms and/or combining
some forms
- overriding a form template easily to be able to set custom
labels/errors/fields position/tags. That's something I like in django
[1] Except that you can't override the behavior of label_tag.
Once you get that it's "easy" to build an admin UI. You can have a
default listing to show all records and filtering/sorting on some fields
values
That's all done in FormAlchemy/pyramid_formalchemy but.. unfortunately,
as the maintainer, I admit that the code is a bit ugly and I no longer
have some time to clean and maintain it... Mostly because my company
only use... Django.
My 2 cents
--
Gael
[1]
https://docs.djangoproject.com/en/dev/topics/forms/#customizing-the-form-template
> - C
>