On 31-7-2012 11:33, goabbear wrote: > There's 3 tables, user(name, mail), mailinglist(name) and an intermediate > table subscription where are stored all the users joining some > mailinglists. > How can I present the "subscription" table to the admins like a > spreadsheet, where the first column represents the users emails and one > other column is a mailinglist name. On each row, the admin can activate the > subscription for each user by checking a checkbox?
You need a combination of list_display and modeladmin actions: <https://docs.djangoproject.com/en/1.4/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_display> <https://docs.djangoproject.com/en/1.4/ref/contrib/admin/actions/> Alternatively, you can use list_editable: <https://docs.djangoproject.com/en/1.4/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_editable> -- Melvyn Sopacua -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.