Re: Adding generated common table expressions

2017-03-17 Thread Tim Graham
Hi, I don't know anything about CTE, but did you see this third-party package? https://github.com/petrounias/django-cte-trees -- It seems to be PostgreSQL only. I was going to write, "Considering that not all databases support CTE (MySQL doesn't), a third-party app might be the way to go rather

Re: Introduction for GSoC 2017

2017-03-17 Thread Tim Graham
Welcome! It's a bit late to be starting on a successful proposal, especially if you haven't contributed to Django before, but good luck. I'm not sure if you were looking for anything specific in reply to your intro? On Monday, March 13, 2017 at 9:52:34 AM UTC-4, Gunpreet Ahuja wrote: > > Greetin

Add ability to choose a different secret for PasswordResetToken

2017-03-17 Thread jann.haber via Django developers (Contributions to Django itself)
Hi everybody, I have two sites in my project. One is for internal use to add members of our club to our database, one is a self-service page for our members. On registration of a member using our internal site, I want to send a password reset link to the member for easy registration to our self-

Re: SQLAlchemy integration - More details

2017-03-17 Thread stamatis . iliass
Hello David. I will check it for sure, thank you! -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubs

Adding generated common table expressions

2017-03-17 Thread Ashley Waite
Hey all, I'd like to suggest adding Common Table Expression (CTE) query generation as a feature to Django. I've been working on a project that required manipulation of many records at once, and as with many ORMs found that this wasn't an ideal use-case in Django. As the rest of our code bas