Opened 6 years ago

Closed 6 years ago

#29191 closed Cleanup/optimization (wontfix)

Move the model name to the beginning of the page title for admin add/change/delete pages

Reported by: Dmitrij Strelnikov Owned by: nobody
Component: contrib.admin Version: 2.0
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi guys, I do have some admin improvements proposal.
The page title is generated automatically by django with default model names but I found big issue with current approach.
Title on change/add/remove pages contains

{% blocktrans %}Change selected {{ model }}{% endblocktrans %}
{% blocktrans %}Add another {{ model }}{% endblocktrans %}
{% blocktrans %}Delete selected {{ model }}{% endblocktrans %}

When you have open few more tabs, it's actually show only 'Change selecte...' next to favico.
So with bunch of tabs you have absolutely no idea what tab is representing what page without manually activating particular tab.

What do you think is it possible to add the model name at the beginning of the title?

{% blocktrans %}{{ model }} change selected{% endblocktrans %}

etc..I know it should be translated for all languages.
I'm able to create PR if you agree with the proposal.

Thanks

Change History (1)

comment:1 by Tim Graham, 6 years ago

Resolution: wontfix
Status: newclosed
Summary: Admin page titleMove the model name to the beginning of the page title for admin add/change/delete pages

Thanks for the proposal, but I don't see much advantage to the change. The wording is less natural and that ordering could have a similar problem in the case of opening add/change/delete pages for the same model.

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