summaryrefslogtreecommitdiff
path: root/archaeological_finds/models_treatments.py
diff options
context:
space:
mode:
authorValérie-Emma Leroux <emma@iggdrasil.net>2017-01-09 22:40:32 +0100
committerValérie-Emma Leroux <emma@iggdrasil.net>2017-01-09 22:40:32 +0100
commitdc7c0cdf9ceba039b2536c0db8e816a3d29880d9 (patch)
tree5ed943ed44c4b10ebf40eb7f56b41f8d8c32a99a /archaeological_finds/models_treatments.py
parentf5f93b8c556d591967dd2001a684fd67dca7b44f (diff)
downloadIshtar-dc7c0cdf9ceba039b2536c0db8e816a3d29880d9.tar.bz2
Ishtar-dc7c0cdf9ceba039b2536c0db8e816a3d29880d9.zip
Update labels
Diffstat (limited to 'archaeological_finds/models_treatments.py')
-rw-r--r--archaeological_finds/models_treatments.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py
index 7586c7eca..0f4a53afc 100644
--- a/archaeological_finds/models_treatments.py
+++ b/archaeological_finds/models_treatments.py
@@ -62,8 +62,8 @@ post_delete.connect(post_save_cache, sender=TreatmentType)
class TreatmentState(GeneralType):
class Meta:
- verbose_name = _(u"Type of treatment state")
- verbose_name_plural = _(u"Type of treatment states")
+ verbose_name = _(u"Treatment state type")
+ verbose_name_plural = _(u"Treatment state types")
ordering = ('label',)
post_save.connect(post_save_cache, sender=TreatmentState)
post_delete.connect(post_save_cache, sender=TreatmentState)
@@ -445,7 +445,7 @@ class TreatmentFile(ClosedItem, BaseHistorizedItem, OwnPerms, ValueGetter,
max_length=200)
name = models.TextField(_(u"Name"), blank=True, null=True)
type = models.ForeignKey(TreatmentFileType, verbose_name=_(u"Treatment "
- u"file type"))
+ u"request type"))
in_charge = models.ForeignKey(
Person, related_name='treatmentfile_responsability',
verbose_name=_(u"Person in charge"), on_delete=models.SET_NULL,