Update help text

This commit is contained in:
Gabriel Augendre 2020-08-18 19:53:02 +02:00
parent 0a7a956ae0
commit 2bb8855da9
2 changed files with 24 additions and 1 deletions

View file

@ -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,
),
),
]

View file

@ -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(