diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-09 19:07:21 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-09 19:07:21 +0100 |
commit | 09495f09efe06ee734b9cb325c2fc154e15b2a35 (patch) | |
tree | e70136aa341212fcd2b22e7f28cd5bb89e2bac94 /archaeological_finds/wizards.py | |
parent | 4e2995741edcf08dfa1fc08c43bb0eae0b1ace72 (diff) | |
download | Ishtar-09495f09efe06ee734b9cb325c2fc154e15b2a35.tar.bz2 Ishtar-09495f09efe06ee734b9cb325c2fc154e15b2a35.zip |
Treatment file -> Treatment request
Diffstat (limited to 'archaeological_finds/wizards.py')
-rw-r--r-- | archaeological_finds/wizards.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py index d7e3dbac0..dab4a76d4 100644 --- a/archaeological_finds/wizards.py +++ b/archaeological_finds/wizards.py @@ -180,8 +180,8 @@ class TreatmentFileAdministrativeActWizard( pk = self.session_get_value(form_key, "pk") try: return ( - (_(u"Treatment file"), - unicode(models.Operation.objects.get(pk=pk))), + (_(u"Treatment request"), + unicode(models.TreatmentFile.objects.get(pk=pk))), ) except models.TreatmentFile.DoesNotExist: return |