Skip to content
Snippets Groups Projects
Select Git revision
  • 1eac118347aac5e0f7196519938d7905f053dc17
  • master default protected
  • v2 protected
  • v2-test protected
  • piratiuk
  • regionalSuccess
  • v1
7 results

ATTRIBUTIONS.md

Blame
  • 0002_auto_20200805_0726.py 926 B
    # Generated by Django 3.0.8 on 2020-08-05 05:26
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ("program2021", "0001_initial"),
        ]
    
        operations = [
            migrations.AddField(
                model_name="program2021homepage",
                name="headline",
                field=models.CharField(
                    blank=True,
                    help_text="Hlavní titulek domovské stránky",
                    max_length=100,
                    null=True,
                    verbose_name="název programu",
                ),
            ),
            migrations.AddField(
                model_name="program2021homepage",
                name="perex",
                field=models.TextField(
                    blank=True,
                    help_text="Text pod titulkem",
                    max_length=512,
                    null=True,
                    verbose_name="perex",
                ),
            ),
        ]