Skip to content
Snippets Groups Projects
Select Git revision
  • d58883bc610607a5151f0c5ce6aae179854c4978
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

README.md

Blame
  • 0094_alter_districtinteractiveprogrampage_content.py 1.04 KiB
    # Generated by Django 4.0.4 on 2022-07-01 16:01
    
    from django.db import migrations
    import wagtail.core.blocks
    import wagtail.core.fields
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('district', '0093_alter_districtinteractiveprogrampage_content'),
        ]
    
        operations = [
            migrations.AlterField(
                model_name='districtinteractiveprogrampage',
                name='content',
                field=wagtail.core.fields.StreamField([('interactive_program_block', wagtail.core.blocks.StructBlock([('name', wagtail.core.blocks.CharBlock(label='Název části programu', required=True)), ('heading', wagtail.core.blocks.CharBlock(label='Nadpis', required=True)), ('description', wagtail.core.blocks.RichTextBlock(blank=True, label='Krátký popis, BEZ BODŮ', required=False)), ('program_items', wagtail.core.blocks.ListBlock(wagtail.core.blocks.StructBlock([('content', wagtail.core.blocks.RichTextBlock(label='Obsah', required=True))]), label='Seznam bodů', required=True))]))], verbose_name='Části programu'),
            ),
        ]