Skip to content
Snippets Groups Projects
Select Git revision
  • cbffa0f00730866b84ea533161235a59e5b7edbf
  • test default protected
  • master protected
  • original
  • pirati-backup protected
  • beta-2
  • beta-1
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1.1
  • v3.1.0
  • v3.0.16
  • v3.0.15
  • v3.0.14
  • v3.0.13
  • v3.0.12
  • v3.0.11
  • v3.0.10
  • v3.0.9
  • v3.0.8
  • v3.0.7
  • v3.0.6
  • v3.0.5
  • v3.0.4
25 results

autoretry.py

Blame
  • 0017_alter_contract_options.py 903 B
    # Generated by Django 4.1.4 on 2023-03-24 21:13
    
    from django.db import migrations
    
    
    class Migration(migrations.Migration):
        dependencies = [
            ("contracts", "0016_alter_contractee_options_alter_signee_options"),
        ]
    
        operations = [
            migrations.AlterModelOptions(
                name="contract",
                options={
                    "permissions": [
                        ("approve", "Schválit / zrušit schválení"),
                        ("view_confidential", "Zobrazit tajné informace"),
                        ("edit_when_approved", "Upravit schválené"),
                        ("delete_when_approved", "Odstranit schválené"),
                        ("edit_others", "Upravit cizí"),
                        ("delete_others", "Odstranit cizí"),
                    ],
                    "verbose_name": "Smlouva",
                    "verbose_name_plural": "Smlouvy",
                },
            ),
        ]