Re: Django Admin Revamp - Any updates?

2012-12-13 Thread Riccardo Forina
Thank you! I discovered a video on the wild showcasing the installing and usage of django-admin-bootstrapped. If anyone is curious to see it in motion, here's the link (already at the correct second): http://youtu.be/St-30zsoDus?t=1h11m35s On Friday, December 14, 2012 2:45:41 AM UTC+1, Victor H

Re: Django Admin Revamp - Any updates?

2012-12-13 Thread Victor Hooi
Hi, Wow, that does look nice =). I know it's just a re-skin, but I do like the look. It'll be curious to see whether the Django Core team would look at using this, and/or whether they're doing a deeper overhaul of the Admin interface... Cheers, Victor On Friday, 14 December 2012 07:31:45 UTC

Re: Django Admin Revamp - Any updates?

2012-12-13 Thread Riccardo Forina
Hi all, I have an alpha version of a restyling of the django admin done with Bootstrap here: https://github.com/riccardo-forina/django-admin-bootstrapped Based on my personal experience - I'm using it on several production sites - it's working pretty well. Maybe it can be a starting point for

Re: Modify .save() implementation

2012-12-13 Thread Emil Stenström
I just thinking out loud here but: what if another thread does something to the previously loaded object? I'm not sure if Django has concurrency tests build into the test suite, but if it hasn't it could explain why the code is written as it is. On Friday, 30 November 2012 19:53:32 UTC+1, Anssi

Re: Django 1.1 is not installable

2012-12-13 Thread David Fischer
The exact versions of Django available on Pypi are here: http://pypi.python.org/simple/Django/ Nobody recommends installing this old version of Django for production, but you can install 1.1.4 like so: pip install django==1.1.4 On Wednesday, December 12, 2012 11:37:58 AM UTC-8, Will Van Wazer wr

Re: Proposal: Django URL Admin (django-urls)

2012-12-13 Thread Zach Borboa
For those of you following, development of django-urls has moved to github. Thanks https://github.com/django-urls/django-urls -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.c

Re: Single table inheritance - working implementation

2012-12-13 Thread Anssi Kääriäinen
On 11 joulu, 17:56, Anssi Kääriäinen wrote: > Would a model._meta.get_default_columns() work for you? While this > would still be internal API, it would be hopefully less likely to > change in ways that require extensive rewrites to 3rd party apps. First, the ._meta.get_default_columns() I propos