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
977 B
35 lines
977 B
9 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from django.db import models
|
||
|
from seminar.models import Organizator
|
||
|
|
||
|
class Seznam(models.Model):
|
||
|
pass
|
||
|
|
||
|
CHOICES_OBTIZNOST = (
|
||
|
(1, 'Lehká'),
|
||
|
(2, 'Střední'),
|
||
|
(3, 'Těžká'),
|
||
|
)
|
||
|
|
||
|
CHOICES_BODY = (
|
||
|
(-1, '-1'),
|
||
|
(0, '0'),
|
||
|
(1, '1'),
|
||
|
)
|
||
|
|
||
|
class Prednaska(models.Model):
|
||
|
nazev = models.CharField('Název', max_length = 300)
|
||
|
org = models.ForeignKey(Organizator)
|
||
|
anotace = models.TextField('Anotace')
|
||
|
obtiznost = models.IntegerField('Obtížnost', choices=CHOICES_OBTIZNOST)
|
||
|
obor = models.CharField('Obor', max_length = 5)
|
||
|
klicova = models.CharField('Klíčová slova', max_length = 200, null = True, blank = True)
|
||
|
seznam = models.ForeignKey(Seznam, blank = True, default = None)
|
||
|
|
||
|
class Hlasovani(models.Model):
|
||
|
prednaska = models.ForeignKey(Prednaska)
|
||
|
body = models.IntegerField('Body', default = 0, choices = CHOICES_BODY)
|
||
|
ucastnik = models.CharField('Účastník', max_length = 100)
|
||
|
|