моя модель
class user_profile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
age = models.IntegerField()
profile_created = models.DateTimeField(auto_now_add=True, auto_now=False)
timestamp = models.DateTimeField(auto_now=True, auto_now_add=False)
admin.py
class UserProfileAdmin(admin.ModelAdmin):
list_display = ['user','user.username','profile_created', 'timestamp']
admin.site.register(user_profile, UserProfileAdmin)
Показывает следующие ошибки:
ERRORS:
<class 'testapp.admin.UserProfileAdmin'>: (admin.E108) The value of 'list_display[1]' refers to 'user.username', which is not a call
able, an attribute of 'UserProfileAdmin', or an attribute or method on 'testapp.user_profile'.
Как получить другие значения таблицы в admin.py
?