I want to display the value of a field related to the associated insida inline model. Is it possible?
httprequest_data = models.ForeginKey(HTTPRequestData)
fieldsets = (
("HTTPRequestData", {
'fields': (
"httprequest_data__user",
"httprequest_data__ip",
),
}),
)
source
share