#9033 closed (fixed)
QuerySet extra()'s arguments could be better represented visually in the doc
Reported by: | Julien Phalip | Owned by: | Derek Willis |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Currently in the Queryset API documentation (1), the arguments for extra()
(e.g. select
, params
, order_by
...), although correctly defined, don't clearly show as sub-parts in the section. Visually they seem to be at the same level as the other queryset methods.
To fix this, one could use bullets, like it's been done for the fieldsets
dictionary keys ("fields"
, "classes"
and "description"
) in the admin doc (2).
Not a big deal but that'd be a nice improvement.
(2) http://docs.djangoproject.com/en/dev/ref/contrib/admin/#fieldsets
Attachments (1)
Change History (7)
comment:1 by , 16 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 14 years ago
milestone: | → 1.3 |
---|---|
Owner: | changed from | to
Status: | new → assigned |
Version: | 1.0 → SVN |
by , 14 years ago
comment:3 by , 14 years ago
Has patch: | set |
---|
comment:4 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [14816]) Fixed #9033 - Add bullets to QuerySet extra() arguments. thanks julien for the suggestion and dwillis for the patch.