diff --git a/apps/map/migrations/0064_auto_20180526_1536.py b/apps/map/migrations/0064_auto_20180526_1536.py new file mode 100644 index 0000000..ec25f7a --- /dev/null +++ b/apps/map/migrations/0064_auto_20180526_1536.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.6 on 2018-05-26 15:36 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('map', '0063_auto_20180525_0052'), + ] + + operations = [ + migrations.AlterField( + model_name='casestudy', + name='land_ownership_details', + field=models.CharField(blank=True, help_text='Please specify details about land ownership', max_length=256, null=True, verbose_name='Land ownership/tenure details'), + ), + ] diff --git a/apps/map/models.py b/apps/map/models.py index 89db88b..ebb0277 100644 --- a/apps/map/models.py +++ b/apps/map/models.py @@ -310,7 +310,7 @@ class CaseStudy(models.Model): # 1.5.3 land_ownership_details = models.CharField( verbose_name=_("Land ownership details"), - help_text=_("Please specify details about land ownership if you chose 'other'"), + help_text=_("Please specify details about land ownership"), max_length=256, null=True, blank=True, diff --git a/apps/map/templates/map/form.html b/apps/map/templates/map/form.html index f2d1ddd..7b48373 100644 --- a/apps/map/templates/map/form.html +++ b/apps/map/templates/map/form.html @@ -177,11 +177,7 @@