Re: Dynamic update template

2018-01-27 Thread Ruchit Bhatt
Ok.Thank you so much for reply. -- 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...@googlegroups.com. To post to this group, send email to d

Re: Dynamic update template

2018-01-27 Thread Jason
Any of those options work for the frontend. I wouldn't worry so much about the reading the code for the following reasons: 1. You're most likely using a build step for production deployment which concatenates all the files into one and minifies it after, with renaming of functions, cl

Re: Dynamic update template

2018-01-27 Thread Ruchit Bhatt
Ok,so you are suggesting front-end framework to make life easier. Do you have any personal choice over angularjs / React / Vue ? One more thing, how security will work in this case because javascript runs on client side & anybody can read how js code comunicating with backend ? -- You received

Re: Dynamic update template

2018-01-27 Thread Jani Tiainen
Hi. Unfortunately doing ajax calls to partially update page is required. It is possible to write all the javascript needed by hand but using frameworks usually makes things easier. 27.1.2018 13.32 "Ruchit Bhatt" kirjoitti: > Hi folks, > Currently i am using Django at basic/intermediate level.

Dynamic update template

2018-01-27 Thread Ruchit Bhatt
Hi folks, Currently i am using Django at basic/intermediate level. And in my web template, single page contains more than one *Forms*, many *chart.js* widgets for to plot graph, plus 2-3 small widget for task management. Now i want to make my site more dynamic (i.e update UI without reloading wh