From da958eb2098372c20cc3aaf905777b1a8d3144eb Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 24 Oct 2012 16:30:23 -0400 Subject: Fixed #9471 - Expanded ModelAdmin.raw_id_fields docs; thanks adroffne for the suggestion. --- docs/ref/contrib/admin/_images/raw_id_fields.png | Bin 0 -> 1871 bytes docs/ref/contrib/admin/index.txt | 8 ++++++++ 2 files changed, 8 insertions(+) create mode 100644 docs/ref/contrib/admin/_images/raw_id_fields.png (limited to 'docs/ref') diff --git a/docs/ref/contrib/admin/_images/raw_id_fields.png b/docs/ref/contrib/admin/_images/raw_id_fields.png new file mode 100644 index 0000000000..0774c40469 Binary files /dev/null and b/docs/ref/contrib/admin/_images/raw_id_fields.png differ diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index e9b573e3a0..6ed929cb7d 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -803,6 +803,14 @@ subclass:: class ArticleAdmin(admin.ModelAdmin): raw_id_fields = ("newspaper",) + The ``raw_id_fields`` ``Input`` widget should contain a primary key if the + field is a ``ForeignKey`` or a comma separated list of values if the field + is a ``ManyToManyField``. The ``raw_id_fields`` widget shows a magnifying + glass button next to the field which allows users to search for and select + a value: + + .. image:: _images/raw_id_fields.png + .. attribute:: ModelAdmin.readonly_fields By default the admin shows all fields as editable. Any fields in this -- cgit v1.3