diff --git a/smash/web/migrations/0055_auto_20170925_0905.py b/smash/web/migrations/0055_auto_20170925_0905.py
new file mode 100644
index 0000000000000000000000000000000000000000..1263dd7c14e56c2f6d7341d69ff2445e0ee3c16f
--- /dev/null
+++ b/smash/web/migrations/0055_auto_20170925_0905.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10.7 on 2017-09-25 09:05
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('web', '0054_remove_inconsistentsubject_ignore'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='subject',
+            name='datetime_contact_reminder',
+            field=models.DateTimeField(blank=True, null=True, verbose_name=b'Please make a contact on'),
+        ),
+    ]
diff --git a/smash/web/models/subject.py b/smash/web/models/subject.py
index b67ff306635512895eaf7cd398577166c9568332..c0a0b4b86d55c2054a3e2ddd6d6839ffddd2cb04 100644
--- a/smash/web/models/subject.py
+++ b/smash/web/models/subject.py
@@ -42,7 +42,7 @@ class Subject(models.Model):
     datetime_contact_reminder = models.DateTimeField(
         null=True,
         blank=True,
-        verbose_name='Contact on',
+        verbose_name='Please make a contact on',
     )
     type = models.CharField(max_length=1,
                             choices=SUBJECT_TYPE_CHOICES.items(),