From 57138943b57971f63342f8e808cd75c911356cdf Mon Sep 17 00:00:00 2001 From: m5ka Date: Wed, 27 Mar 2024 16:20:21 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=93=9C=20fix=20typo=20in=20recipe?= =?UTF-8?q?=20title=20help=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- moku/migrations/0010_alter_recipe_title.py | 18 ++++++++++++++++++ moku/models/recipe.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 moku/migrations/0010_alter_recipe_title.py diff --git a/moku/migrations/0010_alter_recipe_title.py b/moku/migrations/0010_alter_recipe_title.py new file mode 100644 index 0000000..a59adb6 --- /dev/null +++ b/moku/migrations/0010_alter_recipe_title.py @@ -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'), + ), + ] diff --git a/moku/models/recipe.py b/moku/models/recipe.py index 72d4d58..498ca30 100644 --- a/moku/models/recipe.py +++ b/moku/models/recipe.py @@ -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",