Skip to content
Snippets Groups Projects
Select Git revision
  • 2455da83b0644c0ddb68a57e82f6eb02f37320bc
  • main default protected
  • feature/export-filtering
  • feature/clear-schedule-button
  • fix/responsive-cols-in-polls
  • feature/preference-polling-form
  • feature/json-export-via-rest-framework
  • feature/json-schedule-import-tests
  • fix/add-room-import-only-once
  • ak-import
  • renovate/django-simple-history-3.x
  • renovate/django-debug-toolbar-4.x
  • renovate/django-5.x
  • renovate/mysqlclient-2.x
14 results

manage.py

Blame
  • Forked from KIF / AKPlanning
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0051_ak_notes_help_text.py 952 B
    # Generated by Django 3.1.8 on 2022-08-17 17:41
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0050_message_event_reference'),
        ]
    
        operations = [
            migrations.AlterField(
                model_name='ak',
                name='notes',
                field=models.TextField(blank=True, help_text='Notes to organizers. These are public. For private notes, please use the button for private messages on the detail page of this AK (after creation/editing).', verbose_name='Organizational Notes'),
            ),
            migrations.AlterField(
                model_name='historicalak',
                name='notes',
                field=models.TextField(blank=True, help_text='Notes to organizers. These are public. For private notes, please use the button for private messages on the detail page of this AK (after creation/editing).', verbose_name='Organizational Notes'),
            ),
        ]