Saturday, January 30, 2021

Re: Show FK as input instead of drop down in admin

On Wed, Jan 27, 2021 at 05:33:10AM -0800, Kevin Olbrich wrote:
> Is it possible to disable fetching of related models for admin pages?
> I have a field that links to a table containing more than 1M rows which
> django tries to fetch and build the drop down. For my purpose, it is
> sufficient if it is a simple input containing the id instead.
>
> How can I accomplish this?

Yes, raw_id_fields is specifically designed for this:

https://docs.djangoproject.com/en/3.1/ref/contrib/admin/#django.contrib.admin.ModelAdmin.raw_id_fields

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/20210130185707.GO9805%40fattuba.com.

No comments:

Post a Comment