Re: Django Admin New Look

2015-08-17 Thread Marc Tamlyn
+1 to the svg option. On 16 August 2015 at 20:00, elky wrote: > Hi guys, > > I made double work for vector icons - now we have Font and SVG icons. > Let's choose what to use. > > *Quoting my comment > from SVG > discussion here:* > > Well,

The hypothetical models.MultiField: is there a rationale to avoid it ? Or could it make it into future releases ?

2015-08-17 Thread boitoletre
Hi, While implementing our collection management system based on Django, we are always excited by the extensibility of the framework. Most recently, we were exposed to the *forms.MultiValueField* and* widgets.MultiWidget*, that seem to offer composition capacities to users of the *form* an

Re: Django ORM query syntax enhancement

2015-08-17 Thread Anssi Kääriäinen
I like this idea, too. The work I and Loic have been doing has been about transforms that can accept arguments. I don't see why the two styles couldn't be mixed directly. .filter(Q.user.profile.last_login.date(timezone='Europe/Helsinki') < '2015-01-01') .filter(Q.user.last_name.collate('fi').unac

Re: CSRF_FAILURE_VIEW should not be used when DEBUG is False

2015-08-17 Thread Žan Anderle
That makes sense. I wonder if there is a way to support both point of views? Something like showing the 'default' 403 and logging the error to make sure the developers know what's going on... Not sure, would be nice though :) Dne ponedeljek, 10. avgust 2015 20.55.05 UTC+2 je oseba Luke Plant na

Re: Enhancement to the call_command function to allow the use of modules as arguments

2015-08-17 Thread Mike Lissner
Thanks for the response, Aymeric. Comments inline. Mike On Sunday, August 16, 2015 at 1:41:19 PM UTC-4, Aymeric Augustin wrote: In general I would suggest to factor your business logic into a function > that you can call independently from the management command. This is better > for testing

Re: Enhancement to the call_command function to allow the use of modules as arguments

2015-08-17 Thread Aymeric Augustin
2015-08-17 16:54 GMT+02:00 Mike Lissner : > > I’m -1 on removing the Python API that’s equivalent to `django-admin >> my_command`. It’s needed for testing management commands that override >> other management commands. >> > > Not sure what you mean here, but I suspect you're making a good point. >

Re: Django Admin New Look

2015-08-17 Thread Tim Graham
The SVG option looks good to me as well. While you are there, could you update the "no" icon as done in https://github.com/elky/django-flat-theme/pull/14? Unless someone can present an argument for keeping IE8 support, I wouldn't worry about it considering it will be end of life about 1 month a

Re: The hypothetical models.MultiField: is there a rationale to avoid it ? Or could it make it into future releases ?

2015-08-17 Thread Tim Graham
I think the general idea is captured in ticket #5929 -- Allow Fields to use multiple db columns (complex datatypes). Is that the gist of your proposal? https://code.djangoproject.com/ticket/5929 On Monday, August 17, 2015 at 5:11:01 AM UTC-4, boito...@gmail.com wrote: > > Hi, > > While impleme