* cc: bendavis78 (added)
* ui_ux: => 0
* easy: => 0
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:16>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* cc: rh0dium (added)
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:17>
* cc: sebastian.goll@… (added)
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:18>
* status: new => closed
* resolution: => duplicate
* stage: Someday/Maybe => Accepted
Comment:
This is #3591 — also known as the 'app-loading' branch.
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:19>
* status: closed => new
* resolution: duplicate =>
Comment:
Mmm, in fact this was specifically split from app-loading. Sorry.
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:20>
Comment (by Evgeny Tatarintsev):
Hi, I implemented apps ordering via "position" attribute in AppConfig
class
{{{
class TestConfig(AppConfig):
name = 'test'
verbose_name = 'Test App'
position = 0
}}}
Apps orders by it's "position" and then by "verbose_name", no backwards
incompatible, if position not set just ordering by name.
If it's actual I can do pull request.
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:21>
Comment (by Roman):
To move things a little bit forward I have prepared a pull request based
on this comment
https://code.djangoproject.com/ticket/25671#comment:11
https://github.com/django/django/pull/15483
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:22>
* owner: nobody => Roman
* needs_docs: 0 => 1
* has_patch: 0 => 1
* status: new => assigned
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:23>
* needs_docs: 1 => 0
* stage: Accepted => Ready for checkin
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:24>
* status: assigned => closed
* resolution: => fixed
Comment:
In [changeset:"2bee0b4328319eaf6a0d1686677d629f2ecf6dec" 2bee0b4]:
{{{
#!CommitTicketReference repository=""
revision="2bee0b4328319eaf6a0d1686677d629f2ecf6dec"
Fixed #7497 -- Allowed overriding the order of apps and models in admin.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:26>
Comment (by Mariusz Felisiak <felisiak.mariusz@…>):
In [changeset:"d44951b36ef2e698f32a8e1352671689e44c4d62" d44951b3]:
{{{
#!CommitTicketReference repository=""
revision="d44951b36ef2e698f32a8e1352671689e44c4d62"
Refs #7497 -- Added assertion for the default order of models in
AdminSite.app_index().
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/7497#comment:25>