Re: Django Signal DataBase Change on Template

2013-08-01 Thread carlos
Hi if you need create app for real time try this app can help you https://github.com/stephenmcd/django-socketio or find other app https://www.djangopackages.com/grids/g/websockets/ Cheers On Thu, Aug 1, 2013 at 10:59 AM, wrote: > Hi, > > Flot is your friend.

Re: Django Signal DataBase Change on Template

2013-08-01 Thread acheraime
Hi, Flot is your friend. Http://flotgraphs.org Sent from my iPhone On Aug 1, 2013, at 10:54 AM, Saif Jerbi wrote: > I'm building a GPS Tracking System using Django, i should have a grid on my > template that display real time information of cars (position,vitesse,

Re: Django Signal DataBase Change on Template

2013-08-01 Thread Bill Freeman
A lot of JavaScript is involved in doing this. I see three possible approaches: 1. Use a timer in JavaScript to cause the page to reload itself frequently. This isn't pretty. The page will glitch as it reloads. You will be reloading the whole page each time, which includes much that the

Re: Django Signal DataBase Change on Template

2013-08-01 Thread C. Kirby
You are describing a push mechanism, ie. the server pushes new data to the client when it becomes available. That is basically untenable in a standard web server/client paradigm, and django explicitly is built for request/response pairs. That said, you can initiate the updates from the client.

Django Signal DataBase Change on Template

2013-08-01 Thread Saif Jerbi
I'm building a GPS Tracking System using Django, i should have a grid on my template that display real time information of cars (position,vitesse, temperature...). GPS send data to Postgres DataBase via a module that parse Data and saved it in specific table. What i need is how to make my Web