Update help text
This commit is contained in:
parent
0a7a956ae0
commit
2bb8855da9
2 changed files with 24 additions and 1 deletions
23
articles/migrations/0014_auto_20200818_1952.py
Normal file
23
articles/migrations/0014_auto_20200818_1952.py
Normal 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,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
|
@ -110,7 +110,7 @@ class Comment(AdminUrlMixin, models.Model):
|
||||||
null=True,
|
null=True,
|
||||||
help_text=(
|
help_text=(
|
||||||
"Not mandatory, fill only if you want me to be able to contact you. "
|
"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(
|
content = models.TextField(
|
||||||
|
|
Reference in a new issue