Opened 14 years ago
Closed 12 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 , 14 years ago
Triage Stage: | Unreviewed → Design decision needed |
---|
comment:2 by , 14 years ago
comment:3 by , 14 years ago
Severity: | → Normal |
---|---|
Type: | → New feature |
comment:4 by , 13 years ago
UI/UX: | set |
---|
comment:8 by , 12 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
There isn't a lot of demand for this feature, and it can be achieved with a custom template.
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.