diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-22 08:32:44 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-22 08:32:44 +0200 |
commit | 0f2782138918933284dc982d3185f6e40fefe539 (patch) | |
tree | 7a3e627da6cb5e7f3fd0d5ba507e94a345e78ee8 /archaeological_finds | |
parent | 44569ae382aa9422adfb0c8746ad409f5540d942 (diff) | |
download | Ishtar-0f2782138918933284dc982d3185f6e40fefe539.tar.bz2 Ishtar-0f2782138918933284dc982d3185f6e40fefe539.zip |
Add columns to find list (refs #1325)
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/models.py | 1 | ||||
-rw-r--r-- | archaeological_finds/views.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index e4ccaf212..e0c72c79a 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -137,6 +137,7 @@ class Find(BaseHistorizedItem, OwnPerms): 'base_finds.context_record.parcel.town', 'base_finds.context_record.parcel.operation.year', 'base_finds.context_record.parcel.operation.operation_code', + 'container.reference', 'container.location', 'base_finds.is_isolated'] if settings.COUNTRY == 'fr': TABLE_COLS.insert(6, diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index c0ee19c9f..1cf93e080 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2012 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2010-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 Affero General Public License as |