From 2bb8855da91b2b2c732b5e988039563535e7829b Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 18 Aug 2020 19:53:02 +0200 Subject: [PATCH] Update help text --- .../migrations/0014_auto_20200818_1952.py | 23 +++++++++++++++++++ articles/models.py | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 articles/migrations/0014_auto_20200818_1952.py diff --git a/articles/migrations/0014_auto_20200818_1952.py b/articles/migrations/0014_auto_20200818_1952.py new file mode 100644 index 0000000..0c1f301 --- /dev/null +++ b/articles/migrations/0014_auto_20200818_1952.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1 on 2020-08-18 17:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("articles", "0013_auto_20200818_1912"), + ] + + operations = [ + migrations.AlterField( + model_name="comment", + name="email", + field=models.EmailField( + blank=True, + help_text="Not mandatory, fill only if you want me to be able to contact you. It will never be displayed here nor shared with any third party.", + max_length=254, + null=True, + ), + ), + ] diff --git a/articles/models.py b/articles/models.py index ee8e85a..098276b 100644 --- a/articles/models.py +++ b/articles/models.py @@ -110,7 +110,7 @@ class Comment(AdminUrlMixin, models.Model): null=True, help_text=( "Not mandatory, fill only if you want me to be able to contact you. " - "Will never be displayed here nor shared with any third party." + "It will never be displayed here nor shared with any third party." ), ) content = models.TextField(