Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
747 B
24 lines
747 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('prednasky', '0009_auto_20160929_0354'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='prednaska',
|
|
name='anotace',
|
|
field=models.TextField(help_text='Ve\u0159ejn\xe1 anotace v hlasov\xe1n\xed', null=True, verbose_name=b'Anotace', blank=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='prednaska',
|
|
name='popis',
|
|
field=models.TextField(help_text='Neve\u0159ejn\xfd popis pro ostatn\xed orgy', null=True, verbose_name='Popis pro orgy', blank=True),
|
|
),
|
|
]
|
|
|