diff --git a/main/migrations/0033_alter_mainpersonpage_position.py b/main/migrations/0033_alter_mainpersonpage_position.py new file mode 100644 index 0000000000000000000000000000000000000000..9d5f8f84eb32f849a601d206d8e10a98bee250ca --- /dev/null +++ b/main/migrations/0033_alter_mainpersonpage_position.py @@ -0,0 +1,18 @@ +# Generated by Django 4.0.7 on 2022-12-07 06:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('main', '0032_alter_mainprogrampage_program'), + ] + + operations = [ + migrations.AlterField( + model_name='mainpersonpage', + name='position', + field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Pozice/povolání'), + ), + ] diff --git a/main/models.py b/main/models.py index da802482ef4760f1dd4d2b041011d931d23260cf..32e455d405253029f670c8890a45dc384a8fb50e 100644 --- a/main/models.py +++ b/main/models.py @@ -615,7 +615,7 @@ class MainPersonPage(ExtendedMetadataPageMixin, SubpageMixin, MetadataPageMixin, "Tituly za jménem", max_length=16, blank=True, null=True ) position = models.CharField( - "Pozice/povolání", max_length=128, blank=True, null=True + "Pozice/povolání", max_length=200, blank=True, null=True ) perex = models.TextField() text = RichTextField() diff --git a/main/templates/main/includes/newsletter_section.html b/main/templates/main/includes/newsletter_section.html index 2c8af40764027a74b829ad2bdc1e0eec1e67410d..8366bdc5af4364bcf40aec7c1549621661f7fa38 100644 --- a/main/templates/main/includes/newsletter_section.html +++ b/main/templates/main/includes/newsletter_section.html @@ -13,7 +13,7 @@ Odebírej náš newsletter </h5> <span class="inline-block uppercase text-xl xl:text-base font-bold mb-4 xl:w-full"> - Fake news tam nenajdeš, ale dozvíš se co chystáme doopravdy! + Fake news tam nenajdeš, ale dozvíš se, co chystáme doopravdy! </span> <div class="flex flex-col items-start"> <form method="post" class="w-full max-w-md" action="{{ page.root_page.newsletter_subscribe_url }}">