Skip to content
Snippets Groups Projects
Select Git revision
  • 185e339210e4d07fcb3cee653d338070e097c031
  • master default protected
  • 2024-11
  • oprava-babel
  • 2024-1
  • 2023
  • 2022
7 results

countdown.html

Blame
  • 0004_auto_20210323_0352.py 1013 B
    # Generated by Django 3.1.7 on 2021-03-23 02:52
    
    import django.db.models.deletion
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
        dependencies = [
            ("wagtaildocs", "0012_uploadeddocument"),
            ("czech_inspirational", "0003_czechinspirationaldownloadpage_book_file"),
        ]
    
        operations = [
            migrations.AddField(
                model_name="czechinspirationalhomepage",
                name="buy_book_url",
                field=models.URLField(
                    blank=True, null=True, verbose_name="URL pro nákup knihy"
                ),
            ),
            migrations.AlterField(
                model_name="czechinspirationaldownloadpage",
                name="book_file",
                field=models.ForeignKey(
                    blank=True,
                    null=True,
                    on_delete=django.db.models.deletion.SET_NULL,
                    related_name="+",
                    to="wagtaildocs.document",
                    verbose_name="ebook",
                ),
            ),
        ]