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.
35 lines
915 B
35 lines
915 B
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0017_texty_problemu_minor'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ProblemNavrh',
|
|
fields=[
|
|
],
|
|
options={
|
|
'verbose_name': 'Probl\xe9m (n\xe1vrh)',
|
|
'proxy': True,
|
|
'verbose_name_plural': 'Probl\xe9my (n\xe1vrhy)',
|
|
},
|
|
bases=('seminar.problem',),
|
|
),
|
|
migrations.CreateModel(
|
|
name='ProblemZadany',
|
|
fields=[
|
|
],
|
|
options={
|
|
'verbose_name': 'Probl\xe9m (zadan\xfd)',
|
|
'proxy': True,
|
|
'verbose_name_plural': 'Probl\xe9my (zadan\xe9)',
|
|
},
|
|
bases=('seminar.problem',),
|
|
),
|
|
]
|
|
|