Using Django Admin Tables in user views?
Is it possibe to use the sortable, searchable tables that admin users get fro开发者_JS百科m a non-admin/staff view?
I'd like to be able to make use of it to display data to users without having to install a 3rd party app like django_tables2, dont repeat yourself and all that ...
You can use an external app like django-filter to cook a searchable model list page outside the admin.
精彩评论