mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 08:41:00 +00:00
Update help_text in migration
This commit is contained in:
parent
7f23ae5f52
commit
2675ed69ee
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ class Migration(migrations.Migration):
|
||||||
"start",
|
"start",
|
||||||
models.DateTimeField(
|
models.DateTimeField(
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="When the announcement will start appearing.\nLeave blank to have it begin as soon as it is published.",
|
help_text="When the announcement will start appearing.\nLeave blank to have it begin as soon as it is published.\nFormat: <code>2023-01-01</code> or <code>2023-01-01 12:30:00</code>",
|
||||||
null=True,
|
null=True,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -48,7 +48,7 @@ class Migration(migrations.Migration):
|
||||||
"end",
|
"end",
|
||||||
models.DateTimeField(
|
models.DateTimeField(
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="When the announcement will stop appearing.\nLeave blank to have it display indefinitely.",
|
help_text="When the announcement will stop appearing.\nLeave blank to have it display indefinitely.\nFormat: <code>2023-01-01</code> or <code>2023-01-01 12:30:00</code>",
|
||||||
null=True,
|
null=True,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue