Fellow Reports -- January 2019

2019-01-16 Thread Carlton Gibson
Hi All, Calendar Week 2 -- ending 13 January. Triaged: https://code.djangoproject.com/ticket/30097 -- InlineModelAdmin.has_add_permission() requires obj argument (Accepted) https://code.djangoproject.com/ticket/30096 -- Use case of extra() (invalid) Reviewed: https://github.com/dja

Google Summer of Code 2019

2019-01-16 Thread Tim Graham
Org applications for Google's Summer of Code are now open (deadline February 6). Do you think the Django Software Foundation should participate? We haven't had any high quality student applications that we could accept for the past two years. Perhaps it's partly a function of a poor ideas page

Google Summer of Code 2019

2019-01-16 Thread PARTH PATIL
Hey Parth here. I am genuinely interested in doing a project with django as student in gsoc 2019. I have been working hard since past few months to get myself familiar with the famework. I had few project ideas in mind, but I'm confused about the intricacies and needed some help. Also i haven't

Re: status of 2.2 release blockers

2019-01-16 Thread Václav Řehák
Hi, is it possible to get this fix included in 2.2? https://github.com/django/django/pull/10643 - Fixed #29915 -- Support hyphens in UUIDField filtering Vaclav Dne pondělí 14. ledna 2019 3:04:29 UTC+1 Tim Graham napsal(a): > > Time to kick off the progress tracker for the next major release! >

Re: status of 2.2 release blockers

2019-01-16 Thread Carlton Gibson
Hi Vaclav, I think current status is "Still work to do" there, so not really... C. On Wednesday, 16 January 2019 17:52:17 UTC+1, Václav Řehák wrote: > > Hi, > > is it possible to get this fix included in 2.2? > > https://github.com/django/django/pull/10643 - Fixed #29915 -- Support > hyphens

Re: Password reset emails in combination with click tracking do not work with Intelligent Tracking Prevention on Safari for iOS 12 and macOS Mojave

2019-01-16 Thread René Fleschenberg
Hey, I ran into this today. I am reusing the password reset views for user signup, so it affects me quite heavily :) No idea if it is going to be of any use, but I sent a report on https://www.apple.com/feedback/safari.html with links to your ticket and this discussion. I will try to get my hand

Re: status of 2.2 release blockers

2019-01-16 Thread Tim Graham
These features are in. We're planning to do the alpha release tomorrow. On Sunday, January 13, 2019 at 9:04:29 PM UTC-5, Tim Graham wrote: > > Time to kick off the progress tracker for the next major release! > > The 2.2 feature freeze is scheduled (according to > https://code.djangoproject.com/w

[Looking for feedback] Make Admin raw_id_fields the default choice for FKs, or project-wide configurable

2019-01-16 Thread Santiago Basulto
Hey folks, I was about to submit a ticket but i thought it might be better to ask everybody for opinions on the matter first. I am running a couple of medium (not even large) Django websites (around +20K users) and we rely on the admin heavily. We have multiple models pointing to Users (or other

Re: [Looking for feedback] Make Admin raw_id_fields the default choice for FKs, or project-wide configurable

2019-01-16 Thread Santiago Basulto
Btw, for reference, not the only one with this problem: * https://twitter.com/mbrochh/status/1049209871583797248 * https://twitter.com/poswald/status/1072134086041300992 On Wednesday, January 16, 2019 at 5:02:57 PM UTC-5, Santiago Basulto wrote: > > Hey folks, I was about to submit a ticket but i

Re: [Looking for feedback] Make Admin raw_id_fields the default choice for FKs, or project-wide configurable

2019-01-16 Thread Harro
How would the raw_id_fields then work? Would that then turn them into selects again or would that be another setting? If you want it in your whole project you could just extend the ModelAdmin and make the raw_id_fields a property that returns all the fields then use that as a base class for all