From: Matthijs Kooijman Date: Sun, 27 Jan 2008 15:51:12 +0000 (+0100) Subject: * Add a few fields to the influences list in the admin. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fxerxes.git;a=commitdiff_plain;h=38fe2108605e7d59c31709fa763ce24905a5b956 * Add a few fields to the influences list in the admin. --- diff --git a/influences/models.py b/influences/models.py index b3d023c..a2c7226 100644 --- a/influences/models.py +++ b/influences/models.py @@ -42,6 +42,7 @@ class Influence(models.Model): class Admin: list_filter=('character', 'status', 'longterm') search_fields=('character', 'description', 'contact') + list_display=('character', 'contact', 'summary', 'longterm', 'status') class Meta: verbose_name = _("Influence")