How to copy data from one server (mysql) to another server(mysql) on regular basis. Need to replicate data

2016-06-14 Thread sushovan majumdar
Hello, I have to move data from database server to new database server. Schema is same for both. I want to write a cron job which would keep replicating data from old server to newer one. In future I will throw away the old database server. I was looking into database routers in django to achie

what is best way to pass form from non editable view to a editable window then save it and send values back to previously non editor view

2015-11-06 Thread sushovan majumdar
I have a django view which has simple form with key value pair. I have made the fields non editable. I'm providing a edit button which will open a new window dialog and there i will load the same form in editable view and provide option to save or add new rows to form. When user clicks on save o

Re: Dynamic forms data is not getting sent in the POST

2015-10-21 Thread sushovan majumdar
Thanks James. I changed the rendering to move the fieldset inside the form tag and it works. Thank you so much On Wednesday, 21 October 2015 10:58:31 UTC-4, sushovan majumdar wrote: > > Hi James. > I'm copying the rendered HTML from brows

Dynamic forms data is not getting sent in the POST

2015-10-20 Thread sushovan majumdar
I'm trying to add dynamic forms to my inline formset using the steps mentioned in the post: Add a dynamic form to a django formset using javascript in a right way I have inline f