From 39a40b9229fd4721b86af5e13b08f57f39e791f1 Mon Sep 17 00:00:00 2001 From: Gunther Weissenbaeck Date: Mon, 16 Oct 2023 21:35:02 +0200 Subject: [PATCH] contact options --- .../migrations/0002_alter_contact_options.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/contact/migrations/0002_alter_contact_options.py diff --git a/app/contact/migrations/0002_alter_contact_options.py b/app/contact/migrations/0002_alter_contact_options.py new file mode 100644 index 0000000..57b5f47 --- /dev/null +++ b/app/contact/migrations/0002_alter_contact_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.6 on 2023-10-16 19:34 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('contact', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='contact', + options={'verbose_name': 'Kontakt', 'verbose_name_plural': 'Kontakte'}, + ), + ]