diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-12-14 22:02:33 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-12-14 22:02:33 +0100 |
commit | 6c47b6b3bc23aadc674175f140091f46aa5f3868 (patch) | |
tree | 51f9389ebd5b92cf477c169e9266201a8d90cbce /archaeological_context_records/wizards.py | |
parent | 08811d24b0a1869322db82b65c4fbd8a35bc7327 (diff) | |
download | Ishtar-6c47b6b3bc23aadc674175f140091f46aa5f3868.tar.bz2 Ishtar-6c47b6b3bc23aadc674175f140091f46aa5f3868.zip |
Force own filters for context records and finds
Diffstat (limited to 'archaeological_context_records/wizards.py')
-rw-r--r-- | archaeological_context_records/wizards.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_context_records/wizards.py b/archaeological_context_records/wizards.py index a51809d32..99c666e89 100644 --- a/archaeological_context_records/wizards.py +++ b/archaeological_context_records/wizards.py @@ -94,6 +94,7 @@ class RecordWizard(Wizard): class RecordModifWizard(RecordWizard): modification = True model = models.ContextRecord + filter_owns = {'selec-record_modification': ['pk']} class RecordDeletionWizard(DeletionWizard): @@ -102,6 +103,7 @@ class RecordDeletionWizard(DeletionWizard): 'depth', 'location', 'datings', 'units', 'has_furniture', 'filling', 'interpretation', 'taq', 'taq_estimated', 'tpq', 'tpq_estimated'] + filter_owns = {'selec-record_deletion': ['pk']} class RecordSourceWizard(SourceWizard): |