Skip to content
Snippets Groups Projects
Select Git revision
  • 5064bdd53ced14c39afe1b1523dda16744e1a8da
  • test default
  • master protected
3 results

0016_alter_contractee_options_alter_signee_options.py

Blame
  • user avatar
    Tomáš Valenta authored
    ec678cca
    History
    0016_alter_contractee_options_alter_signee_options.py 1.01 KiB
    # Generated by Django 4.1.4 on 2023-03-24 20:47
    
    from django.db import migrations
    
    
    class Migration(migrations.Migration):
        dependencies = [
            ("contracts", "0015_alter_contract_options"),
        ]
    
        operations = [
            migrations.AlterModelOptions(
                name="contractee",
                options={
                    "permissions": [
                        ("edit_others", "Upravit cizí"),
                        ("delete_others", "Odstranit cizí"),
                    ],
                    "verbose_name": "Naše smluvní strana",
                    "verbose_name_plural": "Naše smluvní strany",
                },
            ),
            migrations.AlterModelOptions(
                name="signee",
                options={
                    "permissions": [
                        ("edit_others", "Upravit cizí"),
                        ("delete_others", "Odstranit cizí"),
                    ],
                    "verbose_name": "Jiná smluvní strana",
                    "verbose_name_plural": "Ostatní smluvní strany",
                },
            ),
        ]