Admin.TabularInline Valores de acceso a través de una clave extranjera

"""
You simply need to add the field you want to access in the readonly_fields:
Something like the following:
"""
readonly_fields = ('product', 'rank', 'account_type')
Breakable Baboon