~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to tests/regressiontests/admin_views/admin.py

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2012-10-22 10:53:30 UTC
  • mfrom: (1.2.14)
  • Revision ID: package-import@ubuntu.com-20121022105330-el5jslfv9tkcrwkv
Tags: 1.4.2-1
* New upstream security and maintenance release. Closes: #691145
  Fixes: CVE-2012-4520
* Drop 01_use_stdlib_htmlparser_when_possible.diff which has been
  merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 
128
128
 
129
129
class ThingAdmin(admin.ModelAdmin):
130
 
    list_filter = ('color__warm', 'color__value')
 
130
    list_filter = ('color__warm', 'color__value', 'pub_date',)
131
131
 
132
132
 
133
133
class InquisitionAdmin(admin.ModelAdmin):