Skip to content
Snippets Groups Projects
Commit 9ed9c956 authored by jarmil's avatar jarmil
Browse files

Black applied

parent b9f0a665
Branches
No related tags found
No related merge requests found
...@@ -6,18 +6,30 @@ from django.db import migrations, models ...@@ -6,18 +6,30 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('program2021', '0001_initial'), ("program2021", "0001_initial"),
] ]
operations = [ operations = [
migrations.AddField( migrations.AddField(
model_name='program2021homepage', model_name="program2021homepage",
name='headline', name="headline",
field=models.CharField(blank=True, help_text='Hlavní titulek domovské stránky', max_length=100, null=True, verbose_name='název programu'), field=models.CharField(
blank=True,
help_text="Hlavní titulek domovské stránky",
max_length=100,
null=True,
verbose_name="název programu",
),
), ),
migrations.AddField( migrations.AddField(
model_name='program2021homepage', model_name="program2021homepage",
name='perex', name="perex",
field=models.TextField(blank=True, help_text='Text pod titulkem', max_length=512, null=True, verbose_name='perex'), field=models.TextField(
blank=True,
help_text="Text pod titulkem",
max_length=512,
null=True,
verbose_name="perex",
),
), ),
] ]
...@@ -29,21 +29,14 @@ class Program2021HomePage(Page): ...@@ -29,21 +29,14 @@ class Program2021HomePage(Page):
help_text="Hlavní titulek domovské stránky", help_text="Hlavní titulek domovské stránky",
) )
perex = models.TextField( perex = models.TextField(
"perex", "perex", max_length=512, blank=True, null=True, help_text="Text pod titulkem",
max_length=512,
blank=True,
null=True,
help_text="Text pod titulkem",
) )
### PANELS ### PANELS
content_panels = Page.content_panels + [ content_panels = Page.content_panels + [
MultiFieldPanel( MultiFieldPanel(
[ [FieldPanel("headline"), FieldPanel("perex"),],
FieldPanel("headline"),
FieldPanel("perex"),
],
heading="Vyhledávací formulář", heading="Vyhledávací formulář",
), ),
] ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment