コード例 #1
0
ファイル: models.py プロジェクト: miken/l4g-report-proto
 def __unicode__(self):
     q = str_truncate(self.question.text)
     if self.text:
         a = str_truncate(self.text)
         string = '"{a}" - {q}'
     else:
         a = str_truncate(self.choice.text)
         string = '{a} - {q}'
     return string.format(a=a, q=q)
コード例 #2
0
ファイル: models.py プロジェクト: miken/l4g-report-proto
 def __unicode__(self):
     return "{choice} - {qn}".format(choice=self.text, qn=str_truncate(self.question.text))
コード例 #3
0
ファイル: models.py プロジェクト: miken/l4g-report-proto
 def __unicode__(self):
     return str_truncate(self.text)