Esempio n. 1
0
 def add(self, info):
     "save from request"
     q_o = Question(content=info['content'],
                    qtype=Qtype.get(Qtype.id == info['q_type']))
     q_o.ip = self._ip_check(info['ip'])
     q_o.mail = self._mail_check(info['mail'])
     q_o.save()
     return q_o