Fellow Report - April 30, 2016

2016-04-30 Thread Tim Graham
Triaged --- https://code.djangoproject.com/ticket/26537 - BaseInlineFormSet Adds N Entries to form._meta.fields For FK (duplicate) https://code.djangoproject.com/ticket/26541 - Add a DatabaseFeatures.supports_transactions() method for MySQL (accepted) https://code.djangoproject.com/tick

Re: NumericListfilter or similar

2016-04-30 Thread Cristiano Coelho
Implementing a custom filter with an arbitrary text input is quite easy. All you need is a template and subclass of ListFilter. However I agree that it could be great that it comes already as an option by django since ListFilter and FieldFilter are usually not enough. -- You received this mess

Re: NumericListfilter or similar

2016-04-30 Thread Omer Korner
Released as a plugin: https://github.com/jbkkd/django-numericfieldlistfilter On Tuesday, 19 April 2016 17:49:36 UTC+3, Omer Korner wrote: > > This is a proposal for a new ListFilter subclass. > > Currently, if you add a numeric field to list_filter, Django admin outputs > all possible values of

Re: No access to the login page to the already logged-in user through url

2016-04-30 Thread rajat vijay
Hey, The default value is perfectly fine, I just wanted to say that there can be a default template that the logged-in user be redirected if he tries to access the login page. On Saturday, April 30, 2016 at 4:19:06 PM UTC+5:30, Shai Berger wrote: > > On Saturday 30 April 2016 13:05:38 rajat vija

Re: No access to the login page to the already logged-in user through url

2016-04-30 Thread Shai Berger
On Saturday 30 April 2016 13:05:38 rajat vijay wrote: > Yeah it accomplishes what I want but it's False by default and without > extending the login view it will always be False. > What I am suggesting is it that by default the user should be redirected to > another template(maybe a new one) when t

Re: No access to the login page to the already logged-in user through url

2016-04-30 Thread rajat vijay
Yeah it accomplishes what I want but it's False by default and without extending the login view it will always be False. What I am suggesting is it that by default the user should be redirected to another template(maybe a new one) when trying to access the login page. I suggesting it to be defaul