Skip to content
Snippets Groups Projects
Select Git revision
  • 3dd528d653dcf0131691264d6c061fa2db1d0fa1
  • main default protected
  • renovate/django-5.x
  • koma/feature/preference-polling-form
4 results

admin.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0036_protocol_link.py 662 B
    # Generated by Django 3.0.6 on 2020-05-21 05:24
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0035_event_plan_hidden'),
        ]
    
        operations = [
            migrations.AddField(
                model_name='ak',
                name='protocol_link',
                field=models.URLField(blank=True, help_text='Link to protocol', verbose_name='Protocol Link'),
            ),
            migrations.AddField(
                model_name='historicalak',
                name='protocol_link',
                field=models.URLField(blank=True, help_text='Link to protocol', verbose_name='Protocol Link'),
            ),
        ]