I am making a site that will handle and display a magazine article database. I would like for front end (anonymous, not logged in) users to be able to use some of the same functionality the admin interface offers, namely the ability to sort by column (and reverse the order), and filter by year, publication, etc. Ideally, it should be as easy as adding the 'Admin' subclass is to a class in models.py:
class Admin: list_display = ('titulo', 'revista', 'ano','visible') list_filter = ('revista', 'pais','categoria','ano') ordering = ('-ano',) search_fields = ('titulo','autores','revista') date_hierarchy = 'fecha_modificacion' save_on_top = True Basically, I wonder if there's some read-only, public version of the admin interface. Thanks, Rodrigo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---