Django管理站点显示' XXXObject'而不是直接显示对象的细节

时间:2016-12-28 08:16:10

标签: django django-admin

These are the Apps added from the Model Class

I want it to directly display the details of the Object

Leave_Details类的属性是start_date,end_date,details .. 请点击图片链接。 如何在Home> App> Leave_statuss

中直接显示所有Leave_Object类的属性

就像内置的用户模型一样显示它,即在系统表中显示

2 个答案:

答案 0 :(得分:1)

您需要实施

def __unicode__(self):
   return self.[attribute_name]

将对象的名称作为attribute_name。

进行检索

答案 1 :(得分:0)

您应该定义从<td><input type="text" name="claimsLR1" ng-disabled="true" ng-model="premiumCalculations.percentage1" round-converter2=''></td> 派生的Admin类,并定义您的字段,如下所示:

在你的应用的admin.ModelAdmin中定义

admin.py

RTFM :) - https://docs.djangoproject.com/en/1.10/ref/contrib/admin/ 更具体地说:https://docs.djangoproject.com/en/1.10/ref/contrib/admin/#modeladmin-objects