From 28a71dc5ce1ec76f238c0b7e30d2de8b077b3f53 Mon Sep 17 00:00:00 2001 From: Mandel Olaiya Date: Tue, 17 Mar 2026 02:20:45 +0100 Subject: [PATCH] style: format project files to satisfy ruff check in CI --- ...n_de_attributeoption_option_en_and_more.py | 1259 +++++++++++------ ...okiesettings_cookie_message_de_and_more.py | 59 +- ...settings_delivery_time_text_de_and_more.py | 1221 +++++++++++++--- mandelstudio/settings/base.py | 4 +- mandelstudio/urls.py | 2 +- 5 files changed, 1881 insertions(+), 664 deletions(-) diff --git a/mandelstudio/i18nmigrations/catalogue/0034_attributeoption_option_de_attributeoption_option_en_and_more.py b/mandelstudio/i18nmigrations/catalogue/0034_attributeoption_option_de_attributeoption_option_en_and_more.py index f65c610..ab4ef22 100644 --- a/mandelstudio/i18nmigrations/catalogue/0034_attributeoption_option_de_attributeoption_option_en_and_more.py +++ b/mandelstudio/i18nmigrations/catalogue/0034_attributeoption_option_de_attributeoption_option_en_and_more.py @@ -6,780 +6,1101 @@ from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ - ('catalogue', '0033_merge_20250717_0901'), + ("catalogue", "0033_merge_20250717_0901"), ] operations = [ migrations.AddField( - model_name='attributeoption', - name='option_de', - field=models.CharField(max_length=255, null=True, verbose_name='Option'), + model_name="attributeoption", + name="option_de", + field=models.CharField(max_length=255, null=True, verbose_name="Option"), ), migrations.AddField( - model_name='attributeoption', - name='option_en', - field=models.CharField(max_length=255, null=True, verbose_name='Option'), + model_name="attributeoption", + name="option_en", + field=models.CharField(max_length=255, null=True, verbose_name="Option"), ), migrations.AddField( - model_name='attributeoption', - name='option_es', - field=models.CharField(max_length=255, null=True, verbose_name='Option'), + model_name="attributeoption", + name="option_es", + field=models.CharField(max_length=255, null=True, verbose_name="Option"), ), migrations.AddField( - model_name='attributeoption', - name='option_fr', - field=models.CharField(max_length=255, null=True, verbose_name='Option'), + model_name="attributeoption", + name="option_fr", + field=models.CharField(max_length=255, null=True, verbose_name="Option"), ), migrations.AddField( - model_name='attributeoption', - name='option_it', - field=models.CharField(max_length=255, null=True, verbose_name='Option'), + model_name="attributeoption", + name="option_it", + field=models.CharField(max_length=255, null=True, verbose_name="Option"), ), migrations.AddField( - model_name='attributeoption', - name='option_pt', - field=models.CharField(max_length=255, null=True, verbose_name='Option'), + model_name="attributeoption", + name="option_pt", + field=models.CharField(max_length=255, null=True, verbose_name="Option"), ), migrations.AddField( - model_name='attributeoption', - name='option_ru', - field=models.CharField(max_length=255, null=True, verbose_name='Option'), + model_name="attributeoption", + name="option_ru", + field=models.CharField(max_length=255, null=True, verbose_name="Option"), ), migrations.AddField( - model_name='attributeoptiongroup', - name='name_de', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="attributeoptiongroup", + name="name_de", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='attributeoptiongroup', - name='name_en', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="attributeoptiongroup", + name="name_en", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='attributeoptiongroup', - name='name_es', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="attributeoptiongroup", + name="name_es", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='attributeoptiongroup', - name='name_fr', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="attributeoptiongroup", + name="name_fr", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='attributeoptiongroup', - name='name_it', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="attributeoptiongroup", + name="name_it", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='attributeoptiongroup', - name='name_pt', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="attributeoptiongroup", + name="name_pt", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='attributeoptiongroup', - name='name_ru', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="attributeoptiongroup", + name="name_ru", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='category', - name='description_de', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="category", + name="description_de", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='category', - name='description_en', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="category", + name="description_en", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='category', - name='description_es', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="category", + name="description_es", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='category', - name='description_fr', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="category", + name="description_fr", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='category', - name='description_it', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="category", + name="description_it", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='category', - name='description_pt', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="category", + name="description_pt", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='category', - name='description_ru', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="category", + name="description_ru", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='category', - name='image_de', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to='categories', verbose_name='Image'), + model_name="category", + name="image_de", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to="categories", + verbose_name="Image", + ), ), migrations.AddField( - model_name='category', - name='image_en', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to='categories', verbose_name='Image'), + model_name="category", + name="image_en", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to="categories", + verbose_name="Image", + ), ), migrations.AddField( - model_name='category', - name='image_es', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to='categories', verbose_name='Image'), + model_name="category", + name="image_es", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to="categories", + verbose_name="Image", + ), ), migrations.AddField( - model_name='category', - name='image_fr', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to='categories', verbose_name='Image'), + model_name="category", + name="image_fr", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to="categories", + verbose_name="Image", + ), ), migrations.AddField( - model_name='category', - name='image_it', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to='categories', verbose_name='Image'), + model_name="category", + name="image_it", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to="categories", + verbose_name="Image", + ), ), migrations.AddField( - model_name='category', - name='image_pt', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to='categories', verbose_name='Image'), + model_name="category", + name="image_pt", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to="categories", + verbose_name="Image", + ), ), migrations.AddField( - model_name='category', - name='image_ru', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to='categories', verbose_name='Image'), + model_name="category", + name="image_ru", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to="categories", + verbose_name="Image", + ), ), migrations.AddField( - model_name='category', - name='meta_description_de', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="category", + name="meta_description_de", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='category', - name='meta_description_en', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="category", + name="meta_description_en", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='category', - name='meta_description_es', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="category", + name="meta_description_es", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='category', - name='meta_description_fr', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="category", + name="meta_description_fr", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='category', - name='meta_description_it', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="category", + name="meta_description_it", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='category', - name='meta_description_pt', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="category", + name="meta_description_pt", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='category', - name='meta_description_ru', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="category", + name="meta_description_ru", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='category', - name='meta_title_de', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="category", + name="meta_title_de", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='category', - name='meta_title_en', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="category", + name="meta_title_en", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='category', - name='meta_title_es', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="category", + name="meta_title_es", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='category', - name='meta_title_fr', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="category", + name="meta_title_fr", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='category', - name='meta_title_it', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="category", + name="meta_title_it", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='category', - name='meta_title_pt', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="category", + name="meta_title_pt", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='category', - name='meta_title_ru', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="category", + name="meta_title_ru", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='category', - name='name_de', - field=models.CharField(db_index=True, max_length=255, null=True, verbose_name='Name'), + model_name="category", + name="name_de", + field=models.CharField( + db_index=True, max_length=255, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='category', - name='name_en', - field=models.CharField(db_index=True, max_length=255, null=True, verbose_name='Name'), + model_name="category", + name="name_en", + field=models.CharField( + db_index=True, max_length=255, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='category', - name='name_es', - field=models.CharField(db_index=True, max_length=255, null=True, verbose_name='Name'), + model_name="category", + name="name_es", + field=models.CharField( + db_index=True, max_length=255, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='category', - name='name_fr', - field=models.CharField(db_index=True, max_length=255, null=True, verbose_name='Name'), + model_name="category", + name="name_fr", + field=models.CharField( + db_index=True, max_length=255, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='category', - name='name_it', - field=models.CharField(db_index=True, max_length=255, null=True, verbose_name='Name'), + model_name="category", + name="name_it", + field=models.CharField( + db_index=True, max_length=255, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='category', - name='name_pt', - field=models.CharField(db_index=True, max_length=255, null=True, verbose_name='Name'), + model_name="category", + name="name_pt", + field=models.CharField( + db_index=True, max_length=255, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='category', - name='name_ru', - field=models.CharField(db_index=True, max_length=255, null=True, verbose_name='Name'), + model_name="category", + name="name_ru", + field=models.CharField( + db_index=True, max_length=255, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='category', - name='slug_de', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="category", + name="slug_de", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='category', - name='slug_en', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="category", + name="slug_en", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='category', - name='slug_es', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="category", + name="slug_es", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='category', - name='slug_fr', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="category", + name="slug_fr", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='category', - name='slug_it', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="category", + name="slug_it", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='category', - name='slug_pt', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="category", + name="slug_pt", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='category', - name='slug_ru', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="category", + name="slug_ru", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='option', - name='name_de', - field=models.CharField(db_index=True, max_length=128, null=True, verbose_name='Name'), + model_name="option", + name="name_de", + field=models.CharField( + db_index=True, max_length=128, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='option', - name='name_en', - field=models.CharField(db_index=True, max_length=128, null=True, verbose_name='Name'), + model_name="option", + name="name_en", + field=models.CharField( + db_index=True, max_length=128, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='option', - name='name_es', - field=models.CharField(db_index=True, max_length=128, null=True, verbose_name='Name'), + model_name="option", + name="name_es", + field=models.CharField( + db_index=True, max_length=128, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='option', - name='name_fr', - field=models.CharField(db_index=True, max_length=128, null=True, verbose_name='Name'), + model_name="option", + name="name_fr", + field=models.CharField( + db_index=True, max_length=128, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='option', - name='name_it', - field=models.CharField(db_index=True, max_length=128, null=True, verbose_name='Name'), + model_name="option", + name="name_it", + field=models.CharField( + db_index=True, max_length=128, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='option', - name='name_pt', - field=models.CharField(db_index=True, max_length=128, null=True, verbose_name='Name'), + model_name="option", + name="name_pt", + field=models.CharField( + db_index=True, max_length=128, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='option', - name='name_ru', - field=models.CharField(db_index=True, max_length=128, null=True, verbose_name='Name'), + model_name="option", + name="name_ru", + field=models.CharField( + db_index=True, max_length=128, null=True, verbose_name="Name" + ), ), migrations.AddField( - model_name='product', - name='description_de', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="product", + name="description_de", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='product', - name='description_en', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="product", + name="description_en", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='product', - name='description_es', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="product", + name="description_es", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='product', - name='description_fr', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="product", + name="description_fr", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='product', - name='description_it', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="product", + name="description_it", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='product', - name='description_pt', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="product", + name="description_pt", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='product', - name='description_ru', - field=models.TextField(blank=True, null=True, verbose_name='Description'), + model_name="product", + name="description_ru", + field=models.TextField(blank=True, null=True, verbose_name="Description"), ), migrations.AddField( - model_name='product', - name='long_description_de', - field=models.TextField(blank=True, help_text='A far more elaborate, but optional description of the product', null=True, verbose_name='Content'), + model_name="product", + name="long_description_de", + field=models.TextField( + blank=True, + help_text="A far more elaborate, but optional description of the product", + null=True, + verbose_name="Content", + ), ), migrations.AddField( - model_name='product', - name='long_description_en', - field=models.TextField(blank=True, help_text='A far more elaborate, but optional description of the product', null=True, verbose_name='Content'), + model_name="product", + name="long_description_en", + field=models.TextField( + blank=True, + help_text="A far more elaborate, but optional description of the product", + null=True, + verbose_name="Content", + ), ), migrations.AddField( - model_name='product', - name='long_description_es', - field=models.TextField(blank=True, help_text='A far more elaborate, but optional description of the product', null=True, verbose_name='Content'), + model_name="product", + name="long_description_es", + field=models.TextField( + blank=True, + help_text="A far more elaborate, but optional description of the product", + null=True, + verbose_name="Content", + ), ), migrations.AddField( - model_name='product', - name='long_description_fr', - field=models.TextField(blank=True, help_text='A far more elaborate, but optional description of the product', null=True, verbose_name='Content'), + model_name="product", + name="long_description_fr", + field=models.TextField( + blank=True, + help_text="A far more elaborate, but optional description of the product", + null=True, + verbose_name="Content", + ), ), migrations.AddField( - model_name='product', - name='long_description_it', - field=models.TextField(blank=True, help_text='A far more elaborate, but optional description of the product', null=True, verbose_name='Content'), + model_name="product", + name="long_description_it", + field=models.TextField( + blank=True, + help_text="A far more elaborate, but optional description of the product", + null=True, + verbose_name="Content", + ), ), migrations.AddField( - model_name='product', - name='long_description_pt', - field=models.TextField(blank=True, help_text='A far more elaborate, but optional description of the product', null=True, verbose_name='Content'), + model_name="product", + name="long_description_pt", + field=models.TextField( + blank=True, + help_text="A far more elaborate, but optional description of the product", + null=True, + verbose_name="Content", + ), ), migrations.AddField( - model_name='product', - name='long_description_ru', - field=models.TextField(blank=True, help_text='A far more elaborate, but optional description of the product', null=True, verbose_name='Content'), + model_name="product", + name="long_description_ru", + field=models.TextField( + blank=True, + help_text="A far more elaborate, but optional description of the product", + null=True, + verbose_name="Content", + ), ), migrations.AddField( - model_name='product', - name='meta_description_de', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="product", + name="meta_description_de", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='product', - name='meta_description_en', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="product", + name="meta_description_en", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='product', - name='meta_description_es', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="product", + name="meta_description_es", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='product', - name='meta_description_fr', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="product", + name="meta_description_fr", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='product', - name='meta_description_it', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="product", + name="meta_description_it", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='product', - name='meta_description_pt', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="product", + name="meta_description_pt", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='product', - name='meta_description_ru', - field=models.TextField(blank=True, null=True, verbose_name='Meta description'), + model_name="product", + name="meta_description_ru", + field=models.TextField( + blank=True, null=True, verbose_name="Meta description" + ), ), migrations.AddField( - model_name='product', - name='meta_title_de', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="product", + name="meta_title_de", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='product', - name='meta_title_en', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="product", + name="meta_title_en", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='product', - name='meta_title_es', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="product", + name="meta_title_es", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='product', - name='meta_title_fr', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="product", + name="meta_title_fr", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='product', - name='meta_title_it', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="product", + name="meta_title_it", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='product', - name='meta_title_pt', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="product", + name="meta_title_pt", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='product', - name='meta_title_ru', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Meta title'), + model_name="product", + name="meta_title_ru", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Meta title" + ), ), migrations.AddField( - model_name='product', - name='slug_de', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="product", + name="slug_de", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='product', - name='slug_en', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="product", + name="slug_en", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='product', - name='slug_es', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="product", + name="slug_es", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='product', - name='slug_fr', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="product", + name="slug_fr", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='product', - name='slug_it', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="product", + name="slug_it", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='product', - name='slug_pt', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="product", + name="slug_pt", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='product', - name='slug_ru', - field=oscar.models.fields.slugfield.SlugField(max_length=255, null=True, verbose_name='Slug'), + model_name="product", + name="slug_ru", + field=oscar.models.fields.slugfield.SlugField( + max_length=255, null=True, verbose_name="Slug" + ), ), migrations.AddField( - model_name='product', - name='title_de', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="product", + name="title_de", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='product', - name='title_en', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="product", + name="title_en", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='product', - name='title_es', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="product", + name="title_es", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='product', - name='title_fr', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="product", + name="title_fr", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='product', - name='title_it', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="product", + name="title_it", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='product', - name='title_pt', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="product", + name="title_pt", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='product', - name='title_ru', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="product", + name="title_ru", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='productattribute', - name='name_de', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="productattribute", + name="name_de", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='productattribute', - name='name_en', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="productattribute", + name="name_en", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='productattribute', - name='name_es', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="productattribute", + name="name_es", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='productattribute', - name='name_fr', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="productattribute", + name="name_fr", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='productattribute', - name='name_it', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="productattribute", + name="name_it", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='productattribute', - name='name_pt', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="productattribute", + name="name_pt", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='productattribute', - name='name_ru', - field=models.CharField(max_length=128, null=True, verbose_name='Name'), + model_name="productattribute", + name="name_ru", + field=models.CharField(max_length=128, null=True, verbose_name="Name"), ), migrations.AddField( - model_name='productattributevalue', - name='value_file_de', - field=models.FileField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_file_de", + field=models.FileField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_file_en', - field=models.FileField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_file_en", + field=models.FileField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_file_es', - field=models.FileField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_file_es", + field=models.FileField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_file_fr', - field=models.FileField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), - ), - migrations.AddField( - model_name='productattributevalue', - name='value_file_it', - field=models.FileField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), - ), - migrations.AddField( - model_name='productattributevalue', - name='value_file_pt', - field=models.FileField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), - ), + model_name="productattributevalue", + name="value_file_fr", + field=models.FileField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), + ), migrations.AddField( - model_name='productattributevalue', - name='value_file_ru', - field=models.FileField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_file_it", + field=models.FileField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_image_de', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_file_pt", + field=models.FileField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_image_en', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_file_ru", + field=models.FileField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_image_es', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_image_de", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_image_fr', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_image_en", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_image_it', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_image_es", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_image_pt', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_image_fr", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_image_ru', - field=models.ImageField(blank=True, max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path), + model_name="productattributevalue", + name="value_image_it", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_richtext_de', - field=models.TextField(blank=True, null=True, verbose_name='Richtext'), + model_name="productattributevalue", + name="value_image_pt", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_richtext_en', - field=models.TextField(blank=True, null=True, verbose_name='Richtext'), + model_name="productattributevalue", + name="value_image_ru", + field=models.ImageField( + blank=True, + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + ), ), migrations.AddField( - model_name='productattributevalue', - name='value_richtext_es', - field=models.TextField(blank=True, null=True, verbose_name='Richtext'), + model_name="productattributevalue", + name="value_richtext_de", + field=models.TextField(blank=True, null=True, verbose_name="Richtext"), ), migrations.AddField( - model_name='productattributevalue', - name='value_richtext_fr', - field=models.TextField(blank=True, null=True, verbose_name='Richtext'), + model_name="productattributevalue", + name="value_richtext_en", + field=models.TextField(blank=True, null=True, verbose_name="Richtext"), ), migrations.AddField( - model_name='productattributevalue', - name='value_richtext_it', - field=models.TextField(blank=True, null=True, verbose_name='Richtext'), + model_name="productattributevalue", + name="value_richtext_es", + field=models.TextField(blank=True, null=True, verbose_name="Richtext"), ), migrations.AddField( - model_name='productattributevalue', - name='value_richtext_pt', - field=models.TextField(blank=True, null=True, verbose_name='Richtext'), + model_name="productattributevalue", + name="value_richtext_fr", + field=models.TextField(blank=True, null=True, verbose_name="Richtext"), ), migrations.AddField( - model_name='productattributevalue', - name='value_richtext_ru', - field=models.TextField(blank=True, null=True, verbose_name='Richtext'), + model_name="productattributevalue", + name="value_richtext_it", + field=models.TextField(blank=True, null=True, verbose_name="Richtext"), ), migrations.AddField( - model_name='productattributevalue', - name='value_text_de', - field=models.TextField(blank=True, null=True, verbose_name='Text'), + model_name="productattributevalue", + name="value_richtext_pt", + field=models.TextField(blank=True, null=True, verbose_name="Richtext"), ), migrations.AddField( - model_name='productattributevalue', - name='value_text_en', - field=models.TextField(blank=True, null=True, verbose_name='Text'), + model_name="productattributevalue", + name="value_richtext_ru", + field=models.TextField(blank=True, null=True, verbose_name="Richtext"), ), migrations.AddField( - model_name='productattributevalue', - name='value_text_es', - field=models.TextField(blank=True, null=True, verbose_name='Text'), + model_name="productattributevalue", + name="value_text_de", + field=models.TextField(blank=True, null=True, verbose_name="Text"), ), migrations.AddField( - model_name='productattributevalue', - name='value_text_fr', - field=models.TextField(blank=True, null=True, verbose_name='Text'), + model_name="productattributevalue", + name="value_text_en", + field=models.TextField(blank=True, null=True, verbose_name="Text"), ), migrations.AddField( - model_name='productattributevalue', - name='value_text_it', - field=models.TextField(blank=True, null=True, verbose_name='Text'), + model_name="productattributevalue", + name="value_text_es", + field=models.TextField(blank=True, null=True, verbose_name="Text"), ), migrations.AddField( - model_name='productattributevalue', - name='value_text_pt', - field=models.TextField(blank=True, null=True, verbose_name='Text'), + model_name="productattributevalue", + name="value_text_fr", + field=models.TextField(blank=True, null=True, verbose_name="Text"), ), migrations.AddField( - model_name='productattributevalue', - name='value_text_ru', - field=models.TextField(blank=True, null=True, verbose_name='Text'), + model_name="productattributevalue", + name="value_text_it", + field=models.TextField(blank=True, null=True, verbose_name="Text"), ), migrations.AddField( - model_name='productimage', - name='caption_de', - field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Caption'), + model_name="productattributevalue", + name="value_text_pt", + field=models.TextField(blank=True, null=True, verbose_name="Text"), ), migrations.AddField( - model_name='productimage', - name='caption_en', - field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Caption'), + model_name="productattributevalue", + name="value_text_ru", + field=models.TextField(blank=True, null=True, verbose_name="Text"), ), migrations.AddField( - model_name='productimage', - name='caption_es', - field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Caption'), + model_name="productimage", + name="caption_de", + field=models.CharField( + blank=True, max_length=200, null=True, verbose_name="Caption" + ), ), migrations.AddField( - model_name='productimage', - name='caption_fr', - field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Caption'), + model_name="productimage", + name="caption_en", + field=models.CharField( + blank=True, max_length=200, null=True, verbose_name="Caption" + ), ), migrations.AddField( - model_name='productimage', - name='caption_it', - field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Caption'), + model_name="productimage", + name="caption_es", + field=models.CharField( + blank=True, max_length=200, null=True, verbose_name="Caption" + ), ), migrations.AddField( - model_name='productimage', - name='caption_pt', - field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Caption'), + model_name="productimage", + name="caption_fr", + field=models.CharField( + blank=True, max_length=200, null=True, verbose_name="Caption" + ), ), migrations.AddField( - model_name='productimage', - name='caption_ru', - field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Caption'), + model_name="productimage", + name="caption_it", + field=models.CharField( + blank=True, max_length=200, null=True, verbose_name="Caption" + ), ), migrations.AddField( - model_name='productimage', - name='original_de', - field=models.ImageField(max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path, verbose_name='Original'), + model_name="productimage", + name="caption_pt", + field=models.CharField( + blank=True, max_length=200, null=True, verbose_name="Caption" + ), ), migrations.AddField( - model_name='productimage', - name='original_en', - field=models.ImageField(max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path, verbose_name='Original'), + model_name="productimage", + name="caption_ru", + field=models.CharField( + blank=True, max_length=200, null=True, verbose_name="Caption" + ), ), migrations.AddField( - model_name='productimage', - name='original_es', - field=models.ImageField(max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path, verbose_name='Original'), + model_name="productimage", + name="original_de", + field=models.ImageField( + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + verbose_name="Original", + ), ), migrations.AddField( - model_name='productimage', - name='original_fr', - field=models.ImageField(max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path, verbose_name='Original'), + model_name="productimage", + name="original_en", + field=models.ImageField( + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + verbose_name="Original", + ), ), migrations.AddField( - model_name='productimage', - name='original_it', - field=models.ImageField(max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path, verbose_name='Original'), + model_name="productimage", + name="original_es", + field=models.ImageField( + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + verbose_name="Original", + ), ), migrations.AddField( - model_name='productimage', - name='original_pt', - field=models.ImageField(max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path, verbose_name='Original'), + model_name="productimage", + name="original_fr", + field=models.ImageField( + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + verbose_name="Original", + ), ), migrations.AddField( - model_name='productimage', - name='original_ru', - field=models.ImageField(max_length=255, null=True, upload_to=oscar.utils.models.get_image_upload_path, verbose_name='Original'), + model_name="productimage", + name="original_it", + field=models.ImageField( + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + verbose_name="Original", + ), + ), + migrations.AddField( + model_name="productimage", + name="original_pt", + field=models.ImageField( + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + verbose_name="Original", + ), + ), + migrations.AddField( + model_name="productimage", + name="original_ru", + field=models.ImageField( + max_length=255, + null=True, + upload_to=oscar.utils.models.get_image_upload_path, + verbose_name="Original", + ), ), ] diff --git a/mandelstudio/i18nmigrations/cookie_jar/0007_cookiesettings_cookie_message_de_and_more.py b/mandelstudio/i18nmigrations/cookie_jar/0007_cookiesettings_cookie_message_de_and_more.py index b75ea22..8430007 100644 --- a/mandelstudio/i18nmigrations/cookie_jar/0007_cookiesettings_cookie_message_de_and_more.py +++ b/mandelstudio/i18nmigrations/cookie_jar/0007_cookiesettings_cookie_message_de_and_more.py @@ -5,45 +5,58 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('cookie_jar', '0006_cookiesettings_analytical_default_disabled_and_more'), + ("cookie_jar", "0006_cookiesettings_analytical_default_disabled_and_more"), ] operations = [ migrations.AddField( - model_name='cookiesettings', - name='cookie_message_de', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Cookie statement'), + model_name="cookiesettings", + name="cookie_message_de", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Cookie statement" + ), ), migrations.AddField( - model_name='cookiesettings', - name='cookie_message_en', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Cookie statement'), + model_name="cookiesettings", + name="cookie_message_en", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Cookie statement" + ), ), migrations.AddField( - model_name='cookiesettings', - name='cookie_message_es', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Cookie statement'), + model_name="cookiesettings", + name="cookie_message_es", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Cookie statement" + ), ), migrations.AddField( - model_name='cookiesettings', - name='cookie_message_fr', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Cookie statement'), + model_name="cookiesettings", + name="cookie_message_fr", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Cookie statement" + ), ), migrations.AddField( - model_name='cookiesettings', - name='cookie_message_it', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Cookie statement'), + model_name="cookiesettings", + name="cookie_message_it", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Cookie statement" + ), ), migrations.AddField( - model_name='cookiesettings', - name='cookie_message_pt', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Cookie statement'), + model_name="cookiesettings", + name="cookie_message_pt", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Cookie statement" + ), ), migrations.AddField( - model_name='cookiesettings', - name='cookie_message_ru', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Cookie statement'), + model_name="cookiesettings", + name="cookie_message_ru", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Cookie statement" + ), ), ] diff --git a/mandelstudio/i18nmigrations/ocyan_plugin_wagtail/0030_ocyansettings_delivery_time_text_de_and_more.py b/mandelstudio/i18nmigrations/ocyan_plugin_wagtail/0030_ocyansettings_delivery_time_text_de_and_more.py index 78abb6e..f92af47 100644 --- a/mandelstudio/i18nmigrations/ocyan_plugin_wagtail/0030_ocyansettings_delivery_time_text_de_and_more.py +++ b/mandelstudio/i18nmigrations/ocyan_plugin_wagtail/0030_ocyansettings_delivery_time_text_de_and_more.py @@ -5,290 +5,1171 @@ from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ - ('ocyan_plugin_wagtail', '0029_alter_abstractbasepage_canonical_url'), + ("ocyan_plugin_wagtail", "0029_alter_abstractbasepage_canonical_url"), ] operations = [ migrations.AddField( - model_name='ocyansettings', - name='delivery_time_text_de', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Delivery time explanation'), + model_name="ocyansettings", + name="delivery_time_text_de", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Delivery time explanation" + ), ), migrations.AddField( - model_name='ocyansettings', - name='delivery_time_text_en', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Delivery time explanation'), + model_name="ocyansettings", + name="delivery_time_text_en", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Delivery time explanation" + ), ), migrations.AddField( - model_name='ocyansettings', - name='delivery_time_text_es', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Delivery time explanation'), + model_name="ocyansettings", + name="delivery_time_text_es", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Delivery time explanation" + ), ), migrations.AddField( - model_name='ocyansettings', - name='delivery_time_text_fr', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Delivery time explanation'), + model_name="ocyansettings", + name="delivery_time_text_fr", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Delivery time explanation" + ), ), migrations.AddField( - model_name='ocyansettings', - name='delivery_time_text_it', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Delivery time explanation'), + model_name="ocyansettings", + name="delivery_time_text_it", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Delivery time explanation" + ), ), migrations.AddField( - model_name='ocyansettings', - name='delivery_time_text_pt', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Delivery time explanation'), + model_name="ocyansettings", + name="delivery_time_text_pt", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Delivery time explanation" + ), ), migrations.AddField( - model_name='ocyansettings', - name='delivery_time_text_ru', - field=wagtail.fields.RichTextField(blank=True, null=True, verbose_name='Delivery time explanation'), + model_name="ocyansettings", + name="delivery_time_text_ru", + field=wagtail.fields.RichTextField( + blank=True, null=True, verbose_name="Delivery time explanation" + ), ), migrations.AddField( - model_name='ocyansettings', - name='footer_de', - field=wagtail.fields.StreamField([('about_us', 2), ('text', 2), ('page_list', 4), ('SubscriptionBlock', 7)], block_lookup={0: ('wagtail.blocks.CharBlock', (), {'help_text': 'Heading of the content block.', 'label': 'Heading', 'required': False}), 1: ('wagtail.blocks.RichTextBlock', (), {}), 2: ('wagtail.blocks.StructBlock', [[('heading', 0), ('content', 1)]], {}), 3: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'List pages below this page', 'label': 'Page'}), 4: ('wagtail.blocks.StructBlock', [[('heading', 0), ('page', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="footer_de", + field=wagtail.fields.StreamField( + [ + ("about_us", 2), + ("text", 2), + ("page_list", 4), + ("SubscriptionBlock", 7), + ], + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Heading of the content block.", + "label": "Heading", + "required": False, + }, + ), + 1: ("wagtail.blocks.RichTextBlock", (), {}), + 2: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("content", 1)]], + {}, + ), + 3: ( + "wagtail.blocks.PageChooserBlock", + (), + {"help_text": "List pages below this page", "label": "Page"}, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("page", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='footer_en', - field=wagtail.fields.StreamField([('about_us', 2), ('text', 2), ('page_list', 4), ('SubscriptionBlock', 7)], block_lookup={0: ('wagtail.blocks.CharBlock', (), {'help_text': 'Heading of the content block.', 'label': 'Heading', 'required': False}), 1: ('wagtail.blocks.RichTextBlock', (), {}), 2: ('wagtail.blocks.StructBlock', [[('heading', 0), ('content', 1)]], {}), 3: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'List pages below this page', 'label': 'Page'}), 4: ('wagtail.blocks.StructBlock', [[('heading', 0), ('page', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="footer_en", + field=wagtail.fields.StreamField( + [ + ("about_us", 2), + ("text", 2), + ("page_list", 4), + ("SubscriptionBlock", 7), + ], + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Heading of the content block.", + "label": "Heading", + "required": False, + }, + ), + 1: ("wagtail.blocks.RichTextBlock", (), {}), + 2: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("content", 1)]], + {}, + ), + 3: ( + "wagtail.blocks.PageChooserBlock", + (), + {"help_text": "List pages below this page", "label": "Page"}, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("page", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='footer_es', - field=wagtail.fields.StreamField([('about_us', 2), ('text', 2), ('page_list', 4), ('SubscriptionBlock', 7)], block_lookup={0: ('wagtail.blocks.CharBlock', (), {'help_text': 'Heading of the content block.', 'label': 'Heading', 'required': False}), 1: ('wagtail.blocks.RichTextBlock', (), {}), 2: ('wagtail.blocks.StructBlock', [[('heading', 0), ('content', 1)]], {}), 3: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'List pages below this page', 'label': 'Page'}), 4: ('wagtail.blocks.StructBlock', [[('heading', 0), ('page', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="footer_es", + field=wagtail.fields.StreamField( + [ + ("about_us", 2), + ("text", 2), + ("page_list", 4), + ("SubscriptionBlock", 7), + ], + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Heading of the content block.", + "label": "Heading", + "required": False, + }, + ), + 1: ("wagtail.blocks.RichTextBlock", (), {}), + 2: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("content", 1)]], + {}, + ), + 3: ( + "wagtail.blocks.PageChooserBlock", + (), + {"help_text": "List pages below this page", "label": "Page"}, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("page", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='footer_fr', - field=wagtail.fields.StreamField([('about_us', 2), ('text', 2), ('page_list', 4), ('SubscriptionBlock', 7)], block_lookup={0: ('wagtail.blocks.CharBlock', (), {'help_text': 'Heading of the content block.', 'label': 'Heading', 'required': False}), 1: ('wagtail.blocks.RichTextBlock', (), {}), 2: ('wagtail.blocks.StructBlock', [[('heading', 0), ('content', 1)]], {}), 3: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'List pages below this page', 'label': 'Page'}), 4: ('wagtail.blocks.StructBlock', [[('heading', 0), ('page', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="footer_fr", + field=wagtail.fields.StreamField( + [ + ("about_us", 2), + ("text", 2), + ("page_list", 4), + ("SubscriptionBlock", 7), + ], + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Heading of the content block.", + "label": "Heading", + "required": False, + }, + ), + 1: ("wagtail.blocks.RichTextBlock", (), {}), + 2: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("content", 1)]], + {}, + ), + 3: ( + "wagtail.blocks.PageChooserBlock", + (), + {"help_text": "List pages below this page", "label": "Page"}, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("page", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='footer_it', - field=wagtail.fields.StreamField([('about_us', 2), ('text', 2), ('page_list', 4), ('SubscriptionBlock', 7)], block_lookup={0: ('wagtail.blocks.CharBlock', (), {'help_text': 'Heading of the content block.', 'label': 'Heading', 'required': False}), 1: ('wagtail.blocks.RichTextBlock', (), {}), 2: ('wagtail.blocks.StructBlock', [[('heading', 0), ('content', 1)]], {}), 3: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'List pages below this page', 'label': 'Page'}), 4: ('wagtail.blocks.StructBlock', [[('heading', 0), ('page', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="footer_it", + field=wagtail.fields.StreamField( + [ + ("about_us", 2), + ("text", 2), + ("page_list", 4), + ("SubscriptionBlock", 7), + ], + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Heading of the content block.", + "label": "Heading", + "required": False, + }, + ), + 1: ("wagtail.blocks.RichTextBlock", (), {}), + 2: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("content", 1)]], + {}, + ), + 3: ( + "wagtail.blocks.PageChooserBlock", + (), + {"help_text": "List pages below this page", "label": "Page"}, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("page", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='footer_pt', - field=wagtail.fields.StreamField([('about_us', 2), ('text', 2), ('page_list', 4), ('SubscriptionBlock', 7)], block_lookup={0: ('wagtail.blocks.CharBlock', (), {'help_text': 'Heading of the content block.', 'label': 'Heading', 'required': False}), 1: ('wagtail.blocks.RichTextBlock', (), {}), 2: ('wagtail.blocks.StructBlock', [[('heading', 0), ('content', 1)]], {}), 3: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'List pages below this page', 'label': 'Page'}), 4: ('wagtail.blocks.StructBlock', [[('heading', 0), ('page', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="footer_pt", + field=wagtail.fields.StreamField( + [ + ("about_us", 2), + ("text", 2), + ("page_list", 4), + ("SubscriptionBlock", 7), + ], + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Heading of the content block.", + "label": "Heading", + "required": False, + }, + ), + 1: ("wagtail.blocks.RichTextBlock", (), {}), + 2: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("content", 1)]], + {}, + ), + 3: ( + "wagtail.blocks.PageChooserBlock", + (), + {"help_text": "List pages below this page", "label": "Page"}, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("page", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='footer_ru', - field=wagtail.fields.StreamField([('about_us', 2), ('text', 2), ('page_list', 4), ('SubscriptionBlock', 7)], block_lookup={0: ('wagtail.blocks.CharBlock', (), {'help_text': 'Heading of the content block.', 'label': 'Heading', 'required': False}), 1: ('wagtail.blocks.RichTextBlock', (), {}), 2: ('wagtail.blocks.StructBlock', [[('heading', 0), ('content', 1)]], {}), 3: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'List pages below this page', 'label': 'Page'}), 4: ('wagtail.blocks.StructBlock', [[('heading', 0), ('page', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="footer_ru", + field=wagtail.fields.StreamField( + [ + ("about_us", 2), + ("text", 2), + ("page_list", 4), + ("SubscriptionBlock", 7), + ], + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Heading of the content block.", + "label": "Heading", + "required": False, + }, + ), + 1: ("wagtail.blocks.RichTextBlock", (), {}), + 2: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("content", 1)]], + {}, + ), + 3: ( + "wagtail.blocks.PageChooserBlock", + (), + {"help_text": "List pages below this page", "label": "Page"}, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("heading", 0), ("page", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='header_content_de', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('image_link', 4), ('SubscriptionBlock', 7)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'Optional, you can enter a external link too.', 'required': False}), 3: ('wagtail.blocks.CharBlock', (), {'help_text': 'Optional, you can choose a page too.', 'required': False}), 4: ('wagtail.blocks.StructBlock', [[('image', 1), ('page', 2), ('external_link', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="header_content_de", + field=wagtail.fields.StreamField( + [ + ("text", 0), + ("image", 1), + ("image_link", 4), + ("SubscriptionBlock", 7), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ( + "wagtail.blocks.PageChooserBlock", + (), + { + "help_text": "Optional, you can enter a external link too.", + "required": False, + }, + ), + 3: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional, you can choose a page too.", + "required": False, + }, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("image", 1), ("page", 2), ("external_link", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='header_content_en', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('image_link', 4), ('SubscriptionBlock', 7)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'Optional, you can enter a external link too.', 'required': False}), 3: ('wagtail.blocks.CharBlock', (), {'help_text': 'Optional, you can choose a page too.', 'required': False}), 4: ('wagtail.blocks.StructBlock', [[('image', 1), ('page', 2), ('external_link', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="header_content_en", + field=wagtail.fields.StreamField( + [ + ("text", 0), + ("image", 1), + ("image_link", 4), + ("SubscriptionBlock", 7), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ( + "wagtail.blocks.PageChooserBlock", + (), + { + "help_text": "Optional, you can enter a external link too.", + "required": False, + }, + ), + 3: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional, you can choose a page too.", + "required": False, + }, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("image", 1), ("page", 2), ("external_link", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='header_content_es', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('image_link', 4), ('SubscriptionBlock', 7)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'Optional, you can enter a external link too.', 'required': False}), 3: ('wagtail.blocks.CharBlock', (), {'help_text': 'Optional, you can choose a page too.', 'required': False}), 4: ('wagtail.blocks.StructBlock', [[('image', 1), ('page', 2), ('external_link', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="header_content_es", + field=wagtail.fields.StreamField( + [ + ("text", 0), + ("image", 1), + ("image_link", 4), + ("SubscriptionBlock", 7), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ( + "wagtail.blocks.PageChooserBlock", + (), + { + "help_text": "Optional, you can enter a external link too.", + "required": False, + }, + ), + 3: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional, you can choose a page too.", + "required": False, + }, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("image", 1), ("page", 2), ("external_link", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='header_content_fr', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('image_link', 4), ('SubscriptionBlock', 7)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'Optional, you can enter a external link too.', 'required': False}), 3: ('wagtail.blocks.CharBlock', (), {'help_text': 'Optional, you can choose a page too.', 'required': False}), 4: ('wagtail.blocks.StructBlock', [[('image', 1), ('page', 2), ('external_link', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="header_content_fr", + field=wagtail.fields.StreamField( + [ + ("text", 0), + ("image", 1), + ("image_link", 4), + ("SubscriptionBlock", 7), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ( + "wagtail.blocks.PageChooserBlock", + (), + { + "help_text": "Optional, you can enter a external link too.", + "required": False, + }, + ), + 3: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional, you can choose a page too.", + "required": False, + }, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("image", 1), ("page", 2), ("external_link", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='header_content_it', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('image_link', 4), ('SubscriptionBlock', 7)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'Optional, you can enter a external link too.', 'required': False}), 3: ('wagtail.blocks.CharBlock', (), {'help_text': 'Optional, you can choose a page too.', 'required': False}), 4: ('wagtail.blocks.StructBlock', [[('image', 1), ('page', 2), ('external_link', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="header_content_it", + field=wagtail.fields.StreamField( + [ + ("text", 0), + ("image", 1), + ("image_link", 4), + ("SubscriptionBlock", 7), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ( + "wagtail.blocks.PageChooserBlock", + (), + { + "help_text": "Optional, you can enter a external link too.", + "required": False, + }, + ), + 3: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional, you can choose a page too.", + "required": False, + }, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("image", 1), ("page", 2), ("external_link", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='header_content_pt', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('image_link', 4), ('SubscriptionBlock', 7)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'Optional, you can enter a external link too.', 'required': False}), 3: ('wagtail.blocks.CharBlock', (), {'help_text': 'Optional, you can choose a page too.', 'required': False}), 4: ('wagtail.blocks.StructBlock', [[('image', 1), ('page', 2), ('external_link', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="header_content_pt", + field=wagtail.fields.StreamField( + [ + ("text", 0), + ("image", 1), + ("image_link", 4), + ("SubscriptionBlock", 7), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ( + "wagtail.blocks.PageChooserBlock", + (), + { + "help_text": "Optional, you can enter a external link too.", + "required": False, + }, + ), + 3: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional, you can choose a page too.", + "required": False, + }, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("image", 1), ("page", 2), ("external_link", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='header_content_ru', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('image_link', 4), ('SubscriptionBlock', 7)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.PageChooserBlock', (), {'help_text': 'Optional, you can enter a external link too.', 'required': False}), 3: ('wagtail.blocks.CharBlock', (), {'help_text': 'Optional, you can choose a page too.', 'required': False}), 4: ('wagtail.blocks.StructBlock', [[('image', 1), ('page', 2), ('external_link', 3)]], {}), 5: ('wagtail.blocks.CharBlock', (), {'label': 'Title', 'required': False}), 6: ('wagtail.blocks.TextBlock', (), {'label': 'Description', 'required': False}), 7: ('wagtail.blocks.StructBlock', [[('title', 5), ('description', 6)]], {})}, null=True), + model_name="ocyansettings", + name="header_content_ru", + field=wagtail.fields.StreamField( + [ + ("text", 0), + ("image", 1), + ("image_link", 4), + ("SubscriptionBlock", 7), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ( + "wagtail.blocks.PageChooserBlock", + (), + { + "help_text": "Optional, you can enter a external link too.", + "required": False, + }, + ), + 3: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional, you can choose a page too.", + "required": False, + }, + ), + 4: ( + "wagtail.blocks.StructBlock", + [[("image", 1), ("page", 2), ("external_link", 3)]], + {}, + ), + 5: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "required": False}, + ), + 6: ( + "wagtail.blocks.TextBlock", + (), + {"label": "Description", "required": False}, + ), + 7: ( + "wagtail.blocks.StructBlock", + [[("title", 5), ("description", 6)]], + {}, + ), + }, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='invoice_footer_text_de', - field=wagtail.fields.RichTextField(blank=True, help_text='This text will be displayed at the bottom of your invoice', null=True, verbose_name='Invoice footer text'), + model_name="ocyansettings", + name="invoice_footer_text_de", + field=wagtail.fields.RichTextField( + blank=True, + help_text="This text will be displayed at the bottom of your invoice", + null=True, + verbose_name="Invoice footer text", + ), ), migrations.AddField( - model_name='ocyansettings', - name='invoice_footer_text_en', - field=wagtail.fields.RichTextField(blank=True, help_text='This text will be displayed at the bottom of your invoice', null=True, verbose_name='Invoice footer text'), + model_name="ocyansettings", + name="invoice_footer_text_en", + field=wagtail.fields.RichTextField( + blank=True, + help_text="This text will be displayed at the bottom of your invoice", + null=True, + verbose_name="Invoice footer text", + ), ), migrations.AddField( - model_name='ocyansettings', - name='invoice_footer_text_es', - field=wagtail.fields.RichTextField(blank=True, help_text='This text will be displayed at the bottom of your invoice', null=True, verbose_name='Invoice footer text'), + model_name="ocyansettings", + name="invoice_footer_text_es", + field=wagtail.fields.RichTextField( + blank=True, + help_text="This text will be displayed at the bottom of your invoice", + null=True, + verbose_name="Invoice footer text", + ), ), migrations.AddField( - model_name='ocyansettings', - name='invoice_footer_text_fr', - field=wagtail.fields.RichTextField(blank=True, help_text='This text will be displayed at the bottom of your invoice', null=True, verbose_name='Invoice footer text'), + model_name="ocyansettings", + name="invoice_footer_text_fr", + field=wagtail.fields.RichTextField( + blank=True, + help_text="This text will be displayed at the bottom of your invoice", + null=True, + verbose_name="Invoice footer text", + ), ), migrations.AddField( - model_name='ocyansettings', - name='invoice_footer_text_it', - field=wagtail.fields.RichTextField(blank=True, help_text='This text will be displayed at the bottom of your invoice', null=True, verbose_name='Invoice footer text'), + model_name="ocyansettings", + name="invoice_footer_text_it", + field=wagtail.fields.RichTextField( + blank=True, + help_text="This text will be displayed at the bottom of your invoice", + null=True, + verbose_name="Invoice footer text", + ), ), migrations.AddField( - model_name='ocyansettings', - name='invoice_footer_text_pt', - field=wagtail.fields.RichTextField(blank=True, help_text='This text will be displayed at the bottom of your invoice', null=True, verbose_name='Invoice footer text'), + model_name="ocyansettings", + name="invoice_footer_text_pt", + field=wagtail.fields.RichTextField( + blank=True, + help_text="This text will be displayed at the bottom of your invoice", + null=True, + verbose_name="Invoice footer text", + ), ), migrations.AddField( - model_name='ocyansettings', - name='invoice_footer_text_ru', - field=wagtail.fields.RichTextField(blank=True, help_text='This text will be displayed at the bottom of your invoice', null=True, verbose_name='Invoice footer text'), + model_name="ocyansettings", + name="invoice_footer_text_ru", + field=wagtail.fields.RichTextField( + blank=True, + help_text="This text will be displayed at the bottom of your invoice", + null=True, + verbose_name="Invoice footer text", + ), ), migrations.AddField( - model_name='ocyansettings', - name='mini_footer_de', - field=wagtail.fields.StreamField([('text', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {})}, null=True), + model_name="ocyansettings", + name="mini_footer_de", + field=wagtail.fields.StreamField( + [("text", 0)], + block_lookup={0: ("wagtail.blocks.RichTextBlock", (), {})}, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='mini_footer_en', - field=wagtail.fields.StreamField([('text', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {})}, null=True), + model_name="ocyansettings", + name="mini_footer_en", + field=wagtail.fields.StreamField( + [("text", 0)], + block_lookup={0: ("wagtail.blocks.RichTextBlock", (), {})}, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='mini_footer_es', - field=wagtail.fields.StreamField([('text', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {})}, null=True), + model_name="ocyansettings", + name="mini_footer_es", + field=wagtail.fields.StreamField( + [("text", 0)], + block_lookup={0: ("wagtail.blocks.RichTextBlock", (), {})}, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='mini_footer_fr', - field=wagtail.fields.StreamField([('text', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {})}, null=True), + model_name="ocyansettings", + name="mini_footer_fr", + field=wagtail.fields.StreamField( + [("text", 0)], + block_lookup={0: ("wagtail.blocks.RichTextBlock", (), {})}, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='mini_footer_it', - field=wagtail.fields.StreamField([('text', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {})}, null=True), + model_name="ocyansettings", + name="mini_footer_it", + field=wagtail.fields.StreamField( + [("text", 0)], + block_lookup={0: ("wagtail.blocks.RichTextBlock", (), {})}, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='mini_footer_pt', - field=wagtail.fields.StreamField([('text', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {})}, null=True), + model_name="ocyansettings", + name="mini_footer_pt", + field=wagtail.fields.StreamField( + [("text", 0)], + block_lookup={0: ("wagtail.blocks.RichTextBlock", (), {})}, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='mini_footer_ru', - field=wagtail.fields.StreamField([('text', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {})}, null=True), + model_name="ocyansettings", + name="mini_footer_ru", + field=wagtail.fields.StreamField( + [("text", 0)], + block_lookup={0: ("wagtail.blocks.RichTextBlock", (), {})}, + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='promo_header_de', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('TextSlider', 4)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.CharBlock', (), {}), 3: ('wagtail.blocks.StructBlock', [[('text', 2)]], {}), 4: ('wagtail.blocks.ListBlock', (3,), {})}, help_text='Mobile only', null=True), + model_name="ocyansettings", + name="promo_header_de", + field=wagtail.fields.StreamField( + [("text", 0), ("image", 1), ("TextSlider", 4)], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ("wagtail.blocks.CharBlock", (), {}), + 3: ("wagtail.blocks.StructBlock", [[("text", 2)]], {}), + 4: ("wagtail.blocks.ListBlock", (3,), {}), + }, + help_text="Mobile only", + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='promo_header_en', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('TextSlider', 4)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.CharBlock', (), {}), 3: ('wagtail.blocks.StructBlock', [[('text', 2)]], {}), 4: ('wagtail.blocks.ListBlock', (3,), {})}, help_text='Mobile only', null=True), + model_name="ocyansettings", + name="promo_header_en", + field=wagtail.fields.StreamField( + [("text", 0), ("image", 1), ("TextSlider", 4)], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ("wagtail.blocks.CharBlock", (), {}), + 3: ("wagtail.blocks.StructBlock", [[("text", 2)]], {}), + 4: ("wagtail.blocks.ListBlock", (3,), {}), + }, + help_text="Mobile only", + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='promo_header_es', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('TextSlider', 4)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.CharBlock', (), {}), 3: ('wagtail.blocks.StructBlock', [[('text', 2)]], {}), 4: ('wagtail.blocks.ListBlock', (3,), {})}, help_text='Mobile only', null=True), + model_name="ocyansettings", + name="promo_header_es", + field=wagtail.fields.StreamField( + [("text", 0), ("image", 1), ("TextSlider", 4)], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ("wagtail.blocks.CharBlock", (), {}), + 3: ("wagtail.blocks.StructBlock", [[("text", 2)]], {}), + 4: ("wagtail.blocks.ListBlock", (3,), {}), + }, + help_text="Mobile only", + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='promo_header_fr', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('TextSlider', 4)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.CharBlock', (), {}), 3: ('wagtail.blocks.StructBlock', [[('text', 2)]], {}), 4: ('wagtail.blocks.ListBlock', (3,), {})}, help_text='Mobile only', null=True), + model_name="ocyansettings", + name="promo_header_fr", + field=wagtail.fields.StreamField( + [("text", 0), ("image", 1), ("TextSlider", 4)], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ("wagtail.blocks.CharBlock", (), {}), + 3: ("wagtail.blocks.StructBlock", [[("text", 2)]], {}), + 4: ("wagtail.blocks.ListBlock", (3,), {}), + }, + help_text="Mobile only", + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='promo_header_it', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('TextSlider', 4)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.CharBlock', (), {}), 3: ('wagtail.blocks.StructBlock', [[('text', 2)]], {}), 4: ('wagtail.blocks.ListBlock', (3,), {})}, help_text='Mobile only', null=True), + model_name="ocyansettings", + name="promo_header_it", + field=wagtail.fields.StreamField( + [("text", 0), ("image", 1), ("TextSlider", 4)], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ("wagtail.blocks.CharBlock", (), {}), + 3: ("wagtail.blocks.StructBlock", [[("text", 2)]], {}), + 4: ("wagtail.blocks.ListBlock", (3,), {}), + }, + help_text="Mobile only", + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='promo_header_pt', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('TextSlider', 4)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.CharBlock', (), {}), 3: ('wagtail.blocks.StructBlock', [[('text', 2)]], {}), 4: ('wagtail.blocks.ListBlock', (3,), {})}, help_text='Mobile only', null=True), + model_name="ocyansettings", + name="promo_header_pt", + field=wagtail.fields.StreamField( + [("text", 0), ("image", 1), ("TextSlider", 4)], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ("wagtail.blocks.CharBlock", (), {}), + 3: ("wagtail.blocks.StructBlock", [[("text", 2)]], {}), + 4: ("wagtail.blocks.ListBlock", (3,), {}), + }, + help_text="Mobile only", + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='promo_header_ru', - field=wagtail.fields.StreamField([('text', 0), ('image', 1), ('TextSlider', 4)], blank=True, block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {}), 1: ('wagtail.images.blocks.ImageChooserBlock', (), {}), 2: ('wagtail.blocks.CharBlock', (), {}), 3: ('wagtail.blocks.StructBlock', [[('text', 2)]], {}), 4: ('wagtail.blocks.ListBlock', (3,), {})}, help_text='Mobile only', null=True), + model_name="ocyansettings", + name="promo_header_ru", + field=wagtail.fields.StreamField( + [("text", 0), ("image", 1), ("TextSlider", 4)], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.RichTextBlock", (), {}), + 1: ("wagtail.images.blocks.ImageChooserBlock", (), {}), + 2: ("wagtail.blocks.CharBlock", (), {}), + 3: ("wagtail.blocks.StructBlock", [[("text", 2)]], {}), + 4: ("wagtail.blocks.ListBlock", (3,), {}), + }, + help_text="Mobile only", + null=True, + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_description_de', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Description'), + model_name="ocyansettings", + name="seo_description_de", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Description" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_description_en', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Description'), + model_name="ocyansettings", + name="seo_description_en", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Description" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_description_es', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Description'), + model_name="ocyansettings", + name="seo_description_es", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Description" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_description_fr', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Description'), + model_name="ocyansettings", + name="seo_description_fr", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Description" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_description_it', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Description'), + model_name="ocyansettings", + name="seo_description_it", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Description" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_description_pt', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Description'), + model_name="ocyansettings", + name="seo_description_pt", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Description" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_description_ru', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Description'), + model_name="ocyansettings", + name="seo_description_ru", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Description" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_title_de', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="ocyansettings", + name="seo_title_de", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_title_en', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="ocyansettings", + name="seo_title_en", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_title_es', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="ocyansettings", + name="seo_title_es", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_title_fr', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="ocyansettings", + name="seo_title_fr", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_title_it', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="ocyansettings", + name="seo_title_it", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_title_pt', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="ocyansettings", + name="seo_title_pt", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), migrations.AddField( - model_name='ocyansettings', - name='seo_title_ru', - field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Title'), + model_name="ocyansettings", + name="seo_title_ru", + field=models.CharField( + blank=True, max_length=255, null=True, verbose_name="Title" + ), ), ] diff --git a/mandelstudio/settings/base.py b/mandelstudio/settings/base.py index 641b170..3dc6654 100644 --- a/mandelstudio/settings/base.py +++ b/mandelstudio/settings/base.py @@ -25,7 +25,9 @@ INSTALLED_APPS = ["mandelstudio"] + INSTALLED_APPS # Enable request language negotiation. if "django.middleware.locale.LocaleMiddleware" not in MIDDLEWARE: if "django.contrib.sessions.middleware.SessionMiddleware" in MIDDLEWARE: - idx = MIDDLEWARE.index("django.contrib.sessions.middleware.SessionMiddleware") + 1 + idx = ( + MIDDLEWARE.index("django.contrib.sessions.middleware.SessionMiddleware") + 1 + ) MIDDLEWARE.insert(idx, "django.middleware.locale.LocaleMiddleware") else: MIDDLEWARE.insert(0, "django.middleware.locale.LocaleMiddleware") diff --git a/mandelstudio/urls.py b/mandelstudio/urls.py index 99ec877..4f83e7b 100644 --- a/mandelstudio/urls.py +++ b/mandelstudio/urls.py @@ -4,7 +4,7 @@ from django.urls import include, path from ocyan.main.urls import urlpatterns as ocyan_urlpatterns urlpatterns = [ - path('i18n/', include('django.conf.urls.i18n')), + path("i18n/", include("django.conf.urls.i18n")), ] urlpatterns += i18n_patterns(