2008-6-3
| 03:04 | clintecker_ | if anyone is bored, mind checking my sanity on this one? http://code.djangoproject.com/ticket/7355 |
| 03:04 | clintecker_ | I half think I am insane |
| 03:04 | clintecker_ | real easy to verify |
| 07:51 | RaceCondition | are there any tickets about enabling multiple ModelAdmins for the same model in one admin site? or at least the same ModelAdmin more than once, say, with a different queryset |
| 07:52 | RaceCondition | like, site.register("url_key", SomeAdmin) so the URL's for the two model admins won't conflict |
| 07:53 | RaceCondition | site.register("employees", UserAdmin, queryset=User.objects.filter(type='employee')) |
| 07:54 | RaceCondition | right now one has to emulate this behavior with filters and overriding the admin index view |
| 07:55 | RaceCondition | but then the Add tool item won't work as expected and the breadcrumbs look funny, and the filters block on the right |
| 07:55 | RaceCondition | etc |
| 08:00 | brosner | i wouldn't expect that to work in the near future. you are really using the admin for something its not. |
| 08:09 | RaceCondition | wonder why... |
| 08:10 | RaceCondition | is it so uncommon for the user to be able to see different categories of the same model under different admin lists... |
| 10:10 | RaceCondition | looks like newforms-admin is having problems with unicode and Python 2.3 -- with Python 2.5 at least I'm not getting the same error |
| 18:32 | RaceCondition | has moving django development from svn to a distributed vcs ever been discussed? or is it totally out of question? |
| 18:36 | trbs | RaceCondition, i think currently the policy is to have the main codebase/development line in svn and allow branching to use some of the DVCS's as writen down on the http://code.djangoproject.com/wiki/DjangoBranches page |
| 18:36 | RaceCondition | trbs: thanks |