Opened 14 years ago

Closed 11 years ago

#14587 closed New feature (wontfix)

Model description on administrative interface

Reported by: RuslanPopov Owned by: nobody
Component: contrib.admin Version: 1.2
Severity: Normal Keywords: admin.py models.py
Cc: Triage Stage: Design decision needed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: yes

Description

Hi.

I have nice idea and implementation example to improve the vision of models list on the administrative interface. My last django project has a lot of models and users don't remember what models do. I make simple description for each model. That is how it looks:

http://djbook.ru/static/uploads/model_desc_example.png

The code resides on http://djbook.ru/examples/11/ and has small peace of comments in russian, but I sure that the code itself is understable very well.

I will like to see such ability in the following releases. Thank you.

Change History (8)

comment:1 by Adam Mckerlie <adammckerlie@…>, 14 years ago

Triage Stage: UnreviewedDesign decision needed

comment:2 by Vsevolod Novikov, 14 years ago

My concern is to use standard python __doc__ feature, or an additional 'description' field of the django-style model Meta class instead of the 'description' member of the model class, just because the model class itself may contain 'description' field as a part of the persistent storage model.

comment:3 by Julien Phalip, 13 years ago

Severity: Normal
Type: New feature

comment:4 by Julien Phalip, 13 years ago

UI/UX: set

comment:5 by Aymeric Augustin, 12 years ago

UI/UX: unset

Change UI/UX from NULL to False.

comment:6 by Aymeric Augustin, 12 years ago

Easy pickings: unset

Change Easy pickings from NULL to False.

comment:7 by Aymeric Augustin, 12 years ago

UI/UX: set

Revert accidental batch modification.

comment:8 by Aymeric Augustin, 11 years ago

Resolution: wontfix
Status: newclosed

There isn't a lot of demand for this feature, and it can be achieved with a custom template.

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