﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32680	Add an option to display inlines as a table without forms.	Dave Kong	nobody	"I have Inline models that lists a lot of rows, and on save, it causes an error due to DATA_UPLOAD_MAX_NUMBER_FIELDS being exceeded.  I can increase this setting to a much larger number, but that reduces the benefit of it to catch SuspiciousOperations.

The thing is that all the inline model fields are read-only. I also tried to mark them using `has_change_permission` override to false. It also has 
{{{
extra = 0
    max_num = 0
    can_delete = False
}}}
so no new can be added or deleted. but that didn't seem to work.   I still see in POST request all the PK (and FK) being sent like below.

orders-0-id: 6769275
orders-0-customer: 165326
orders-1-id: 6658512
orders-1-customer: 165326
orders-2-id: 6550069
orders-2-customer: 165326
orders-3-id: 6446255
orders-3-customer: 165326

Is there any reason these need to be sent if inline model is readonly through and through?  Or is there a way to mark inline as completely readonly?"	New feature	closed	contrib.admin	2.2	Normal	wontfix			Unreviewed	0	0	0	0	0	0
