diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2014-07-18 19:26:49 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2014-07-18 19:27:33 +0200 |
commit | 3575ddb6a5bd9a00a2ac3064f0ba99259dc57af0 (patch) | |
tree | 56fb851bd45f51ae7a2df5b4fd4e23e6275449d9 /archaeological_operations/models.py | |
parent | dcf828da68293f50b654a72a59f5d31dafa1a013 (diff) | |
download | Ishtar-3575ddb6a5bd9a00a2ac3064f0ba99259dc57af0.tar.bz2 Ishtar-3575ddb6a5bd9a00a2ac3064f0ba99259dc57af0.zip |
Administrativ act: change object length (refs #1649)
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index d37422f3d..7a2748032 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -495,7 +495,7 @@ class AdministrativeAct(BaseHistorizedItem, OwnPerms, ValueGetter): signature_date = models.DateField(_(u"Signature date"), blank=True, null=True) year = models.IntegerField(_(u"Year"), blank=True, null=True) - act_object = models.TextField(_(u"Object"), max_length=200, blank=True, + act_object = models.TextField(_(u"Object"), max_length=300, blank=True, null=True) if settings.COUNTRY == 'fr': ref_sra = models.CharField(u"Référence SRA", max_length=15, blank=True, |