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.
23 lines
764 B
23 lines
764 B
# Generated by Django 2.2.7 on 2019-12-04 21:57
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0071_remove_nastaveni_aktualni_rocnik'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='treenode',
|
|
name='srolovatelne',
|
|
field=models.BooleanField(blank=True, help_text='Bude na stránce témátka možnost tuto položku skrýt', null=True, verbose_name='Srolovatelné'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='treenode',
|
|
name='zajimave',
|
|
field=models.BooleanField(default=False, help_text='Zobrazí se daná věc na rozcestníku témátek', verbose_name='Zajímavé'),
|
|
),
|
|
]
|
|
|