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
|
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)
Owner: |
changed from nobody to shawnr
|
Triage Stage: |
Unreviewed → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
Doublechecked this is accurate, and it is. Malcolm approved at DC Sprint.