1👍
✅
A guess of your requirement, If you want to show the other things just add them in your unicode
method also:
class Lecturer(models.Model):
name = models.CharField(max_length=200,verbose_name=u'Eğitmenin Adı')
tc_kimlik_no = models.IntegerField(verbose_name=u'Eğitmenin TC Kimlik Numarası')
sertifika_no = models.CharField(max_length=200,verbose_name=u'Eğitmenin sertifika numarası')
def __unicode__(self):
return 'Name: %s, Kimlik: %s, Sertifika: %s' % (
self.name, str(self.tc_kimlik_no), self.sertifika_no)
Is that what you wanted?
Source:stackexchange.com