1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2008 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# See the file COPYING for details.
'''
Models management
'''
from django.db import models
from django.utils.translation import gettext_lazy as _
class Category(models.Model):
name = models.CharField(max_length=100)
description = models.TextField()
def __unicode__(self):
return self.name
class PollUser(models.Model):
name = models.CharField(max_length=100)
email = models.CharField(max_length=100)
password = models.CharField(max_length=100)
modification_date = models.DateTimeField(auto_now=True)
class Poll(models.Model):
name = models.CharField(max_length=200)
description = models.CharField(max_length=1000)
author = models.ForeignKey(PollUser)
category = models.ForeignKey(Category, null=True, blank=True)
enddate = models.DateTimeField(null=True, blank=True)
base_url = models.CharField(max_length=100)
admin_url = models.CharField(max_length=100)
modification_date = models.DateTimeField(auto_now=True)
public = models.BooleanField(default=False)
open = models.BooleanField(default=True)
TYPE = (('P', _('Poll')),
('B', _('Balanced poll')),
('O', _('One choice poll')),)
# ('M', _('Meeting')),)
type = models.CharField(max_length=1, choices=TYPE)
def getTypeLabel(self):
idx = [type[0] for type in self.TYPE].index(self.type)
return Poll.TYPE[idx][1]
class Admin:
pass
class Meta:
ordering = ['-modification_date']
def __unicode__(self):
return self.name
class Voter(models.Model):
user = models.ForeignKey(PollUser)
poll = models.ForeignKey(Poll)
creation_date = models.DateTimeField(auto_now_add=True)
modification_date = models.DateTimeField(auto_now=True)
class Meta:
ordering = ['creation_date']
def __unicode__(self):
return _("Vote from %(user)s") % {'user':self.user.name}
class Choice(models.Model):
poll = models.ForeignKey(Poll)
name = models.CharField(max_length=200)
order = models.IntegerField()
limit = models.IntegerField(null=True, blank=True)
available = models.BooleanField(default=True)
class Admin:
pass
class Meta:
ordering = ['order']
class Vote(models.Model):
voter = models.ForeignKey(Voter)
choice = models.ForeignKey(Choice)
VOTE = ((1, (_('Yes'), _('Yes'))),
(0, (_('No'), _('Maybe')), ),
(-1, (_('No'), _('No'))),)
value = models.IntegerField(choices=VOTE, blank=True, null=True)
|