1
select_related()
is for foreign keys.
prefetch_related()
is for M2M.
You will need to add those values that you are displaying in your template.
Also note that if you are displaying values from related model you may need to do something like select_related('model__fieldname
)`
Source:stackexchange.com