Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#7905 closed (fixed)

document raw_id_fields option in InlineModelAdmin

Reported by: Matthew Flanagan <mattimustang@…> Owned by:
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

A quick patch to document this option.

Index: docs/admin.txt
===================================================================
--- docs/admin.txt      (revision 8051)
+++ docs/admin.txt      (working copy)
@@ -569,6 +569,17 @@

 .. _max_num in formsets: ../modelforms/#limiting-the-number-of-objects-editable

+``raw_id_fields``
+~~~~~~~~~~~~~~~~~
+
+By default, Django's admin uses a select-box interface (<select>) for
+fields that are ``ForeignKey``. Sometimes you don't want to incur the
+overhead of having to select all the related instances to display in the
+drop-down.
+
+``raw_id_fields`` is a list of fields you would like to change
+into a ``Input`` widget for the primary key.
+
 ``template``
 ~~~~~~~~~~~~

Change History (5)

comment:1 by shawnr, 16 years ago

Owner: changed from nobody to shawnr

comment:2 by shawnr, 16 years ago

Triage Stage: UnreviewedReady for checkin

Doublechecked this is accurate, and it is. Malcolm approved at DC Sprint.

comment:3 by shawnr, 16 years ago

Owner: shawnr removed

comment:4 by Brian Rosner, 16 years ago

Resolution: fixed
Status: newclosed

(In [8176]) Clarified the raw_id_fields documentation and added it to InlineModelAdmin? options section. Added examples as well. Fixes #7905. Thanks Matthew Flanagan for the report.

comment:5 by Jacob, 13 years ago

milestone: 1.0 beta

Milestone 1.0 beta deleted

Note: See TracTickets for help on using tickets.
Back to Top