Envío de formulario con una tabla dinámica

2017-12-20 Thread Antonio Veliz
bueno estoy ya trabajando con un formulario que tiene una tabla dinámica, en la tabla puedo adicionar y eliminar las filas hasta alli todo bien, lo que nececito que me ayuden en 2 cosas que no he podido resolver: 1-) El segundo select es dependiente del primero y no se hace nada no se que error

Re: How do I know what version a patch is included in?

2017-12-20 Thread Jani Tiainen
Hi. Usually when ticket is closed there is a pointer to changeset which fixed the issue. When you look the changeset it should also contain a list of tags that are in effect in that changeset. By looking that ticket it was fixed in master branch and then backported to 2.0.x branch. In this case

How do I know what version a patch is included in?

2017-12-20 Thread Andrew Buchan
I'm being affected by this bug: https://code.djangoproject.com/ticket/28562 which was fixed 4 months ago. Somewhere on the ticket page it says: Version: 1.11 → master Which is the only reference to version I found anywhere on the page, so I assumed this meant the fix was in 1.11 I've just sp

Re: Channels routing - must parse path to separate between consumers?

2017-12-20 Thread Andrew Godwin
If you can replicate consumers being called twice on one event that's a serious issue we need to look into (the only thing that does this by design is the multiplexer, which calls all its sub-consumers for all events). Andrew On Wed, Dec 20, 2017 at 4:50 AM, SK wrote: > Yes. That what was indee

store media files on amazon Elastic File System

2017-12-20 Thread gavaskar . t
How to store the django static and media files in amazon Elastic File System -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroup

Re: Search results in template

2017-12-20 Thread James Schneider
On Dec 19, 2017 5:12 PM, "Malik Rumi" wrote: I am implementing search on a local Django project: Django 1.11.5, Python 3.6.3, Ubuntu 16.04. My issue is getting the search results onto the template. I am using standard CBV for everything else in the site, but for this one I wrote my own. It uses

Re: After update, auth migration fails.

2017-12-20 Thread Andrew Buchan
OK, I solved it. Migrations attempted to modify auth.user, but it seems MYSQL checks the referential integrity of any child table with a FK to the table being modified. My child table had bad foreign keys, hence the error during migration. Side note: whe way I got these foreign key errors was

Re: Channels routing - must parse path to separate between consumers?

2017-12-20 Thread SK
Yes. That what was indeed happening. Please see a more detailed thread - the one I said Google Groups didn't post . (The update I posted there actually isn't really a solution because I discovered later it doesn't work) Now I've