diff options
-rw-r--r-- | chimere/admin.py | 6 | ||||
-rw-r--r-- | debian/pydist-overrides | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/chimere/admin.py b/chimere/admin.py index 996dfd5..6c7b2cc 100644 --- a/chimere/admin.py +++ b/chimere/admin.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2008-2012 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2008-2013 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as @@ -181,8 +181,8 @@ class MarkerAdmin(admin.ModelAdmin): Specialized the Point field. """ search_fields = ("name",) - list_display = ('name', 'status') - list_filter = ('status', 'categories') + list_display = ('name', 'status', 'start_date', 'end_date') + list_filter = ('status', 'categories', 'start_date', 'end_date') actions = [validate, disable, managed_modified, export_to_kml, export_to_shapefile, export_to_csv] exclude = ['submiter_session_key', 'import_key', 'import_version', diff --git a/debian/pydist-overrides b/debian/pydist-overrides index 753bbf5..0d69808 100644 --- a/debian/pydist-overrides +++ b/debian/pydist-overrides @@ -1,3 +1,2 @@ django_tinymce tinymce pil python-imaging -django_extensions python-django |