fix: 📜 fix typo in recipe title help text

This commit is contained in:
m5ka 2024-03-27 16:20:21 +00:00
parent ad27fdf1c2
commit 57138943b5
2 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 5.0.3 on 2024-03-27 16:19
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('moku', '0009_alter_recipestep_instructions'),
]
operations = [
migrations.AlterField(
model_name='recipe',
name='title',
field=models.CharField(help_text='give the recipe a title, just so you know what the recipe is for.', max_length=64, verbose_name='recipe title'),
),
]

View file

@ -29,7 +29,7 @@ class Recipe(models.Model):
title = models.CharField(
verbose_name=_("recipe title"),
max_length=64,
help_text=_("give the recipe a title, just so you know the recipe is for."),
help_text=_("give the recipe a title, just so you know what the recipe is for."),
)
created_by = models.ForeignKey(
"User",