コード例 #1
0
ファイル: allPythonContent.py プロジェクト: Mondego/pyreco
 def get_data(self, obj):
     return {
         'title': unicode(obj),
         'url': obj.get_absolute_url(),
     }
コード例 #2
0
ファイル: allPythonContent.py プロジェクト: Mondego/pyreco
 def get_title(self, obj):
     return unicode(obj)
コード例 #3
0
ファイル: allPythonContent.py プロジェクト: Mondego/pyreco
 def __unicode__(self):
     return unicode('%s related to %s ("%s")' % (self.parent, self.object, self.alias))
コード例 #4
0
ファイル: models.py プロジェクト: wade1990/django-generic-m2m
 def __unicode__(self):
     return unicode(u'%s related to %s ("%s")' %
                    (self.parent, self.object, self.alias))
コード例 #5
0
 def get_data(self, obj):
     return {
         'title': unicode(obj),
         'url': obj.get_absolute_url(),
     }
コード例 #6
0
 def get_title(self, obj):
     return unicode(obj)